Skip to content

Instantly share code, notes, and snippets.

@imaginator
Created January 2, 2022 17:04
Show Gist options
  • Save imaginator/26b8c618ab34a0f5a5ffc20ba75e1a0d to your computer and use it in GitHub Desktop.
Save imaginator/26b8c618ab34a0f5a5ffc20ba75e1a0d to your computer and use it in GitHub Desktop.
✘  ~  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