dotfiles/bin/idle
2021-01-03 09:29:27 -08:00

20 lines
436 B
Bash
Executable file

#!/bin/bash
BACKGROUND=~/.background_lock
LOCK_TMOUT=900
SLEEP_TMOUT=3600
swayidle -w \
timeout ${LOCK_TMOUT} "swaylock -f -i ${BACKGROUND}" \
timeout ${SLEEP_TMOUT} 'swaymsg "output * dpms off"' \
resume 'swaymsg "output * dpms on"' \
before-sleep "swaylock -f -i ${BACKGROUND}" &
pgrep swayidle
RT=$?
if [ $RT -eq 0 ]
then
notify-send -t 1000 idle "Screensaver enabled"
else
notify-send idle "Unable to enable screensaver"
fi