Lots of scripts

This commit is contained in:
2026-03-06 22:33:30 +00:00
parent b1863b545a
commit 3740b69b53
29 changed files with 601 additions and 207 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
STATE_FILE=~/.local/state/station/toggles/screensaver-off
if [[ -f $STATE_FILE ]]; then
rm -f $STATE_FILE
notify-send "󱄄 Screensaver enabled"
else
mkdir -p "$(dirname $STATE_FILE)"
touch $STATE_FILE
notify-send "󱄄 Screensaver disabled"
fi