blob: 91682491d40247f65bcf841a3e3fbd47c7407be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
pid="$(pgrep swayidle)"
if [ -z "$pid" ]; then
swayidle -w timeout 300 'swaylock -f -c 000000' \
timeout 300 'swaymsg "output * dpms off"' \
resume 'swaymsg "output * dpms on"' &
notify-send --app-name "Autolock" "Enabled"
else
kill -9 "$pid"
notify-send --app-name "Autolock" "DISABLED"
fi
|