Rewrite the hyprlock (systemd-lock-handler) service

This commit is contained in:
ItsDrike 2024-12-22 04:37:44 +01:00
parent ffd352074f
commit 4b37fb8fb3
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
5 changed files with 18 additions and 17 deletions

View file

@ -0,0 +1,17 @@
[Unit]
Description=Run hyprlock screenlocker on lock dbus event (using systemd-lock-handler)
Requisite=wm-ready.target
# if hyprlock exists cleanly, enter a 'unlock' target
OnSuccess=unlock.target
# When lock.target is stopped, stop this unit too
PartOf=lock.target
[Service]
ExecStart=/usr/bin/hyprlock
StandardOutput=journal
ExecStop=/bin/kill -s SIGUSR1 $MAINPID
ExecStopPost=/bin/loginctl unlock-session
Restart=on-failure
[Install]
WantedBy=lock.target