6 lines
167 B
Bash
Executable file
6 lines
167 B
Bash
Executable file
#!/bin/bash
|
|
swayidle -w \
|
|
timeout 1 'swaylock -f -c 000000' \
|
|
timeout 2 'swaymsg "output * dpms off"' \
|
|
resume 'swaymsg "output * dpms on"; pkill -USR1 swayidle'
|
|
|