all repos — archive/dotfiles @ b9a7843d481f03ff4539b9adfebcc6620890d0b1

Superseded by nixfiles

i3: Add mode for power commands
Alan Pearce alan@alanpearce.eu
Mon, 04 Sep 2017 12:42:07 +0200
commit

b9a7843d481f03ff4539b9adfebcc6620890d0b1

parent

96f8281882885dce53bc61298933578ce2ce0c99

1 files changed, 16 insertions(+), 0 deletions(-)

jump to
M i3/.config/i3/configi3/.config/i3/config
@@ -189,6 +189,22 @@ } 
 bindsym $mod+Shift+r mode "resize"
 
+set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown
+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 r exec --no-startup-id systemctl reboot, mode "default"
+    bindsym Shift+s exec --no-startup-id systemctl poweroff -i, mode "default"
+
+    # back to normal: Enter or Escape
+    bindsym Return mode "default"
+    bindsym Escape mode "default"
+}
+
+bindsym $mod+Pause mode "$mode_system"
+
 # Start i3bar to display a workspace bar (plus the system information i3status
 # finds out, if available)
 bar {