home: wm: i3: also toggle xss-lock

This commit is contained in:
Bruno BELANYI 2021-06-26 18:38:11 +02:00
parent 7a382368e8
commit 57717d70ef

View file

@ -58,9 +58,11 @@ let
#!/bin/sh #!/bin/sh
if ${systemctlUser} is-active xautolock-session.service; then if ${systemctlUser} is-active xautolock-session.service; then
${systemctlUser} stop --user xautolock-session.service ${systemctlUser} stop --user xautolock-session.service
xset s off
${notify} "Disabled Xautolock" ${notify} "Disabled Xautolock"
else else
${systemctlUser} start xautolock-session.service ${systemctlUser} start xautolock-session.service
xset s on
${notify} "Enabled Xautolock" ${notify} "Enabled Xautolock"
fi fi
''; '';