Created
September 19, 2016 11:17
-
-
Save raphiz/d69859645a9da08a0cf0778f42932120 to your computer and use it in GitHub Desktop.
Lock screen on suspend - i3 - /etc/systemd/system/
This file contains 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
[Unit] | |
Description=User suspend actions | |
Before=sleep.target | |
[Service] | |
User=rzi # Replace with your user id - %I does not work somehow :/ | |
Type=forking | |
Environment=DISPLAY=:0 | |
ExecStart=/usr/bin/blurlock # Or i3lock | |
ExecStartPost=/usr/bin/sleep 1 | |
[Install] | |
WantedBy=sleep.target |
@reverendhomer There is a note in https://wiki.archlinux.org/index.php/Power_management#Suspend.2Fresume_service_files
As screen lockers may return before the screen is "locked", the screen may flash on resuming from suspend. Adding a small delay via
ExecStartPost=/usr/bin/sleep 1
helps prevent this.
%I
would work if the service file name ended with @.service
instead of .service
. Then, you can enable it for a user: systemctl enable [email protected]
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why do you need this?