17 lines
442 B
SYSTEMD
17 lines
442 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Idle manager for Wayland
|
||
|
|
Documentation=man:swayidle(1)
|
||
|
|
PartOf=graphical-session.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=simple
|
||
|
|
ExecStart=/usr/bin/swayidle -w \
|
||
|
|
timeout 300 'swaylock -f -c 000000' \
|
||
|
|
timeout 600 'swaymsg "output * dpms off"' \
|
||
|
|
resume 'swaymsg "output * dpms on"' \
|
||
|
|
before-sleep 'swaylock -f -c 000000'
|
||
|
|
ExecStartPost=/usr/bin/sleep 1
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=sway-session.target
|