that's a bunch of cool new stuff

This commit is contained in:
2024-12-19 23:32:30 +01:00
parent ae3d29b0ee
commit ac51a31675
34 changed files with 864 additions and 517 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
while :
do
tooltip=$(hyprshade current)
if [[ -z "$tooltip" ]]; then
tooltip="Off"
fi
text="󰈈"
if [[ -z "$tooltip" ]]; then
text="󰡮"
fi
echo '{"text": "'$text'", "tooltip": "Current shader: '$tooltip'", "class": "hyprshade", "alt": "'$tooltip'"}'
sleep 1
done