Created
January 2, 2022 17:04
-
-
Save imaginator/26b8c618ab34a0f5a5ffc20ba75e1a0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✘ ~ cat .config/systemd/user/swayidle.service | |
[Unit] | |
Description=Idle manager for Wayland | |
Documentation=man:swayidle(1) | |
PartOf=graphical-session.target | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/swayidle -w \ | |
timeout 900 'swaymsg "output * dpms off"' \ | |
resume 'swaymsg "output * dpms on"' \ | |
timeout 1200 'swaylock -f -c 000000' \ | |
resume 'swaymsg "output * dpms on"' \ | |
timeout 3600000 'systemctl suspend' \ | |
resume 'swaymsg "output * dpms on"' \ | |
before-sleep 'swaylock -f -c 000000' | |
[Install] | |
WantedBy=sway-session.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment