1
0
Fork 0
dotfiles/files/.config/systemd/user/swayidle.service

16 lines
490 B
SYSTEMD
Raw Normal View History

2019-04-04 23:37:38 +00:00
[Unit]
Description=Idle manager for Wayland
Documentation=man:swayidle(1)
PartOf=graphical-session.target
[Service]
Type=simple
ExecStart=/usr/bin/swayidle -w \
2019-10-20 01:33:34 +00:00
timeout 600 'echo RELOADAGENT | gpg-connect-agent; swaylock -f' \
2019-10-12 03:36:37 +00:00
timeout 30 'if pgrep swaylock; then swaymsg "output * dpms off"; fi' \
resume 'if pgrep swaylock; then swaymsg "output * dpms on"; fi' \
2019-10-20 01:33:34 +00:00
before-sleep 'echo RELOADAGENT | gpg-connect-agent; swaylock -f'
2019-04-04 23:37:38 +00:00
[Install]
WantedBy=sway-session.target