7 lines
194 B
Bash
7 lines
194 B
Bash
|
#!/usr/bin/env bash
|
||
|
swayidle -w \
|
||
|
timeout 30 'swaylock -f -c 000000' \
|
||
|
timeout 60 'swaymsg "output * dpms off"' \
|
||
|
resume 'swaymsg "output * dpms on"' \
|
||
|
before-sleep 'swaylock -f -c 000000'
|