7 lines
194 B
Bash
Executable File
7 lines
194 B
Bash
Executable File
#!/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'
|