blob: 478c8f865c7137d3dd0c31166916c4d2d761b054 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[Unit]
Description=Idle manager for Wayland (lock + DPMS)
PartOf=graphical-session.target
After=graphical-session.target
ConditionEnvironment=WAYLAND_DISPLAY
[Service]
Type=simple
ExecStart=/usr/bin/swayidle -w \
timeout 300 'swaymsg "output * power off"' \
resume 'swaymsg "output * power on"' \
timeout 330 'swaylock -f -e -c 000000' \
before-sleep 'playerctl -a pause; swaylock -f -e -c 000000' \
lock 'swaylock -f -e -c 000000'
Restart=on-failure
RestartSec=2s
[Install]
WantedBy=sway-session.target
|