13 lines
283 B
Plaintext
13 lines
283 B
Plaintext
|
|
#!/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
|