blob: 7adbff4935b786f0768e50a307b01603fc620ad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
swayidle -w \
timeout 300 'swaylock' \
timeout 10 'pgrep -x swaylock && swaymsg "output * dpms off"' \
resume 'swaymsg "output * dpms on"' \
before-sleep 'swaylock'
# exec swayidle -w \
# timeout 300 'swaylock' \
# timeout 310 'swaymsg "output * dpms off"' \
# resume 'swaymsg "output * dpms on"' \
# timeout 5 'pgrep -x swaylock && swaymsg "output * power off"' \
# resume 'swaymsg "output * dpms on"' \
# before-sleep 'swaylock'
|