diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-08 23:06:21 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-08 23:06:21 +1000 |
| commit | e9ad4be0e615cdc1ac8abaad7a2f6649a97616f5 (patch) | |
| tree | e437970788a51ed5499d9c942a7ad22ce52d535d /scheme | |
| parent | completions: add shell ipc commands (diff) | |
| parent | fix: hardcoded interpreter paths (diff) | |
| download | caelestia-cli-e9ad4be0e615cdc1ac8abaad7a2f6649a97616f5.tar.gz caelestia-cli-e9ad4be0e615cdc1ac8abaad7a2f6649a97616f5.tar.bz2 caelestia-cli-e9ad4be0e615cdc1ac8abaad7a2f6649a97616f5.zip | |
Merge pull request #3 from PiotrekB416/fix/hardcoded-interpreters
fix: hardcoded interpreter paths
Diffstat (limited to 'scheme')
| -rwxr-xr-x | scheme/autoadjust.py | 2 | ||||
| -rwxr-xr-x | scheme/gen-print-scheme.fish | 2 | ||||
| -rwxr-xr-x | scheme/gen-scheme.fish | 2 | ||||
| -rwxr-xr-x | scheme/main.fish | 2 | ||||
| -rwxr-xr-x | scheme/score.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/scheme/autoadjust.py b/scheme/autoadjust.py index cd8d479..1c6dc2c 100755 --- a/scheme/autoadjust.py +++ b/scheme/autoadjust.py @@ -1,4 +1,4 @@ -#!/bin/python3 +#!/usr/bin/env python3 import sys from colorsys import hls_to_rgb, rgb_to_hls diff --git a/scheme/gen-print-scheme.fish b/scheme/gen-print-scheme.fish index 75328e1..6dfa482 100755 --- a/scheme/gen-print-scheme.fish +++ b/scheme/gen-print-scheme.fish @@ -1,4 +1,4 @@ -#!/bin/fish +#!/usr/bin/env fish set -l src (dirname (status filename)) diff --git a/scheme/gen-scheme.fish b/scheme/gen-scheme.fish index 488ee27..35e0bc5 100755 --- a/scheme/gen-scheme.fish +++ b/scheme/gen-scheme.fish @@ -1,4 +1,4 @@ -#!/bin/fish +#!/usr/bin/env fish set -l src (dirname (status filename)) diff --git a/scheme/main.fish b/scheme/main.fish index 129856a..5e6ad03 100755 --- a/scheme/main.fish +++ b/scheme/main.fish @@ -1,4 +1,4 @@ -#!/bin/fish +#!/usr/bin/env fish # Usage: # caelestia scheme <scheme> <flavour> [mode] diff --git a/scheme/score.py b/scheme/score.py index 92ebbb7..18ddc21 100755 --- a/scheme/score.py +++ b/scheme/score.py @@ -1,4 +1,4 @@ -#!/bin/python +#!/usr/bin/env python import sys |