diff options
| -rwxr-xr-x | install/scripts.fish | 2 | ||||
| -rwxr-xr-x | scheme/getlightness.py | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/install/scripts.fish b/install/scripts.fish index 59c8646..700ea8a 100755 --- a/install/scripts.fish +++ b/install/scripts.fish @@ -2,7 +2,7 @@ . (dirname (status filename))/util.fish -install-deps git hyprland-git hyprpaper-git okolors-git imagemagick wl-clipboard fuzzel-git socat foot jq python xdg-user-dirs +install-deps git hyprland-git hyprpaper-git okolors-git imagemagick wl-clipboard fuzzel-git socat foot jq python xdg-user-dirs python-materialyoucolor-git install-optional-deps 'equibop-bin (discord client)' 'btop (system monitor)' 'wf-recorder (screen recorder)' 'grim (screenshot tool)' 'zen-browser (web browser)' 'spotify-adblock (music player)' set -l dist $C_DATA/scripts diff --git a/scheme/getlightness.py b/scheme/getlightness.py deleted file mode 100755 index 956153e..0000000 --- a/scheme/getlightness.py +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/python3 - -import sys -from colorsys import rgb_to_hls - -if __name__ == "__main__": - for arg in sys.argv[1:]: - print(rgb_to_hls(*tuple(int(arg[i:i+2], 16) for i in (0, 2, 4)))[1]) |