10 lines
316 B
Plaintext
10 lines
316 B
Plaintext
# Define locker script
|
|
set $locker swaylock -f -i "$(shuf -n1 -e ~/Pictures/Lockscreens/*.png)" -s fill
|
|
bindsym $alt+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
|