From 0b4aa5db57f3572feb97cadc61db3f69665989c8 Mon Sep 17 00:00:00 2001 From: tslil clingman Date: Sat, 29 Jan 2022 14:24:11 -0500 Subject: Hotkey to toggle autolocking --- sway/sway_autolock | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 sway/sway_autolock (limited to 'sway/sway_autolock') diff --git a/sway/sway_autolock b/sway/sway_autolock new file mode 100755 index 0000000..9168249 --- /dev/null +++ b/sway/sway_autolock @@ -0,0 +1,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 -- cgit v1.2.3