summaryrefslogtreecommitdiff
path: root/sway/sway_autolock
diff options
context:
space:
mode:
Diffstat (limited to 'sway/sway_autolock')
-rwxr-xr-xsway/sway_autolock8
1 files changed, 3 insertions, 5 deletions
diff --git a/sway/sway_autolock b/sway/sway_autolock
index 9168249..307bc0d 100755
--- a/sway/sway_autolock
+++ b/sway/sway_autolock
@@ -2,11 +2,9 @@
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"
+ swayidle -w timeout 300 lock &
+ notify-send -t 3000 --app-name "Autolock" "Enabled"
else
kill -9 "$pid"
- notify-send --app-name "Autolock" "DISABLED"
+ notify-send -t 3000 --app-name "Autolock" "DISABLED"
fi