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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
%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]
.