summaryrefslogtreecommitdiff
path: root/sway/sway_autolock
blob: 307bc0d1429b64d6999f8654145cd7f7605ef764 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

pid="$(pgrep swayidle)"
if [ -z "$pid" ]; then
	swayidle -w timeout 300 lock &
	notify-send -t 3000 --app-name "Autolock" "Enabled"
else
	kill -9 "$pid"
	notify-send -t 3000 --app-name "Autolock" "DISABLED"
fi