13 lines
274 B
Bash
Executable File
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"
|