diff options
| author | Piotr Bartoszewicz <piotrek15.pb@gmail.com> | 2025-06-08 10:04:59 +0200 |
|---|---|---|
| committer | Piotr Bartoszewicz <piotrek15.pb@gmail.com> | 2025-06-08 10:04:59 +0200 |
| commit | 4892446e572fdee164f60cd55665e9737becbfa6 (patch) | |
| tree | 37240aeb246fa70a4aceb470b6010d98e7133c4d /scheme | |
| parent | schemes: fix preexisting schemes (diff) | |
| download | caelestia-cli-4892446e572fdee164f60cd55665e9737becbfa6.tar.gz caelestia-cli-4892446e572fdee164f60cd55665e9737becbfa6.tar.bz2 caelestia-cli-4892446e572fdee164f60cd55665e9737becbfa6.zip | |
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 |