diff options
author | Alan Pearce | 2017-11-25 00:35:13 +0100 |
---|---|---|
committer | Alan Pearce | 2017-11-25 00:35:13 +0100 |
commit | 8568b1783f7a9d3d061d7a3005921196b21536c6 (patch) | |
tree | 1f3939dc087d9689971ae1399c341c53b50f681a /i3 | |
parent | b7be428cee2e5860bfb9d79348a0db961641254a (diff) | |
download | nixfiles-8568b1783f7a9d3d061d7a3005921196b21536c6.tar.lz nixfiles-8568b1783f7a9d3d061d7a3005921196b21536c6.tar.zst nixfiles-8568b1783f7a9d3d061d7a3005921196b21536c6.zip |
i3: Rely on physlock instead of $Locker
Diffstat (limited to 'i3')
-rw-r--r-- | i3/.config/i3/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config index cf67541d..feae8603 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -228,8 +228,8 @@ set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) re mode "$mode_system" { bindsym l exec --no-startup-id $Locker, mode "default" bindsym e exec --no-startup-id i3-msg exit, mode "default" - bindsym s exec --no-startup-id $Locker && systemctl suspend, mode "default" - bindsym h exec --no-startup-id $Locker && systemctl hibernate, mode "default" + bindsym s exec --no-startup-id systemctl suspend, mode "default" + bindsym h exec --no-startup-id systemctl hibernate, mode "default" bindsym r exec --no-startup-id systemctl reboot, mode "default" bindsym Shift+s exec --no-startup-id systemctl poweroff -i, mode "default" |