Files
dotfiles/.local/bin/station-toggle-screensaver

13 lines
283 B
Plaintext
Raw Permalink Normal View History

2026-03-06 22:33:30 +00:00
#!/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