10 lines
264 B
Plaintext
10 lines
264 B
Plaintext
|
# Define locker script
|
||
|
set $locker ~/bin/lockscreen
|
||
|
bindsym $mod+L exec $locker
|
||
|
|
||
|
# IDLE CONFIG
|
||
|
exec swayidle -w \
|
||
|
timeout 300 $locker \
|
||
|
timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
|
||
|
before-sleep $locker
|