about summary refs log tree commit diff
path: root/configs/shared/misc/.config/i3/config.shared
diff options
context:
space:
mode:
Diffstat (limited to 'configs/shared/misc/.config/i3/config.shared')
-rw-r--r--configs/shared/misc/.config/i3/config.shared17
1 files changed, 12 insertions, 5 deletions
diff --git a/configs/shared/misc/.config/i3/config.shared b/configs/shared/misc/.config/i3/config.shared
index 71fe1bf59085..a81a47b31b1c 100644
--- a/configs/shared/misc/.config/i3/config.shared
+++ b/configs/shared/misc/.config/i3/config.shared
@@ -76,7 +76,7 @@ bindsym $mod+n exec st -e lf ~/Downloads
 
 # Screenshot
 # TODO: find a better KBD for this
-# bindsym $mod+Shift+4 exec zsh -i -c snipit
+bindsym $mod+s exec zsh -i -c snipit # note that this eclipses Tmux's M-s KBD for switching b/w session
 bindsym Ctrl+Print   exec scrot ~/Pictures/screenshots/%b-%d-%Y_%T.png # Windows style
 # TODO: debug
 # bindsym $mod+Print   exec scrot --focused ~/Pictures/screenshots/%b-%d-%Y_%T.png # Windows style
@@ -99,6 +99,11 @@ exec --no-startup-id gnome-settings-daemon
 # wireless selection mechanism
 exec --no-startup-id nm-applet
 
+# set the split direction
+bindsym $mod+v split vertical
+# cannot bind $mod+h because of movement commands
+bindsym $mod+Shift+v split horizontal
+
 # lock the screen (Window's famous Ctrl-Alt-Delete)
 bindsym $mod+Ctrl+Delete exec "/usr/share/goobuntu-desktop-files/xsecurelock.sh"
 bindsym $mod+Shift+q     exec "/usr/share/goobuntu-desktop-files/xsecurelock.sh"
@@ -234,13 +239,15 @@ set $bright_cyan    #56b6c2
 set $selection      #3a3f4b
 
 # class                 # border    # bg # text #indicator #child_border
-client.focused          $red        $red $red   $red       $bright_cyan
-client.focused_inactive $red        $red $red   $red       $black
-client.unfocused        $red        $red $red   $red       $black
+client.focused          $red        $red $red   $magenta   $bright_cyan
+client.focused_inactive $red        $red $red   $magenta   $black
+client.unfocused        $red        $red $red   $magenta   $black
 
 bar {
     status_command i3status
     position top
+    # disable system tray icons
+    tray_output none
     colors {
            background $black
            statusline $white
@@ -250,4 +257,4 @@ bar {
            inactive_workspace $black $black $bright_black
            urgent_workspace   $magenta $black $magenta
     }
-}
+}
\ No newline at end of file