blob: 353f2e8a718d25c8e2af794e7b272efbee313738 (
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 282828' \
before-sleep 'playerctl -a pause; swaylock -f -e -c 282828' \
lock 'swaylock -f -e -c 282828'
Restart=on-failure
RestartSec=2s
[Install]
WantedBy=sway-session.target
|