Files
dotfiles/bin/swayidle.sh
2022-08-21 22:20:12 +03:00

13 lines
274 B
Bash
Executable File

#! /bin/bash
killall swayidle
lockCmd="$HOME/dotfiles/bin/lock.sh just-lock"
swayidle -w \
timeout 900 "$lockCmd" \
timeout 900 'swaymsg "output * dpms off"' \
resume 'swaymsg "output * dpms on"' \
after-resume 'swaymsg "output * dpms on"' \
before-sleep "$lockCmd"