mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-12-27 21:54:34 +00:00
18 lines
460 B
SYSTEMD
18 lines
460 B
SYSTEMD
|
[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
|