This commit is contained in:
2025-12-09 21:23:12 +02:00
parent c70ad02033
commit 0dabe39be9
15 changed files with 191 additions and 14 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/bash
MODE=$(swaymsg -r -t get_binding_state 2>/dev/null | jq -r '.name // "default"')
ICON=""
if [ "$MODE" = "OSRS" ]; then
echo "$ICON ON"
else
echo "$ICON OFF"
fi