summaryrefslogtreecommitdiff
path: root/scheme
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-08 23:06:21 +1000
committerGitHub <noreply@github.com>2025-06-08 23:06:21 +1000
commite9ad4be0e615cdc1ac8abaad7a2f6649a97616f5 (patch)
treee437970788a51ed5499d9c942a7ad22ce52d535d /scheme
parentcompletions: add shell ipc commands (diff)
parentfix: hardcoded interpreter paths (diff)
downloadcaelestia-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-xscheme/autoadjust.py2
-rwxr-xr-xscheme/gen-print-scheme.fish2
-rwxr-xr-xscheme/gen-scheme.fish2
-rwxr-xr-xscheme/main.fish2
-rwxr-xr-xscheme/score.py2
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