summaryrefslogtreecommitdiffstats
path: root/i3
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-09-22 19:08:13 -0500
committerJesse Luehrs <doy@tozt.net>2012-09-22 19:10:49 -0500
commit887ffe74a30a5d4d0c90c9c79328e9d52e965fdc (patch)
treec88363e26f7bf27f11720d4f7a282c4b6d4dbf07 /i3
parent2b1f3bb9c348c05dd43c7185c07c49a45a70de48 (diff)
downloadconf-887ffe74a30a5d4d0c90c9c79328e9d52e965fdc.tar.gz
conf-887ffe74a30a5d4d0c90c9c79328e9d52e965fdc.zip
switch to i3
Diffstat (limited to 'i3')
-rw-r--r--i3/config115
1 files changed, 115 insertions, 0 deletions
diff --git a/i3/config b/i3/config
new file mode 100644
index 0000000..1e8616c
--- /dev/null
+++ b/i3/config
@@ -0,0 +1,115 @@
+# i3 config file (v4)
+#
+# Please see http://i3wm.org/docs/userguide.html for a complete reference!
+
+set $mod Mod1+Ctrl
+set $layout_mod Mod4
+
+# Font for window titles. Will also be used by the bar unless a different font
+# is used in the bar {} block below.
+font 6x10
+
+# Use Mouse+$mod to drag floating windows to their wanted position
+floating_modifier $layout_mod
+
+# window decorations
+new_window 1pixel
+client.focused #aaaaaa #aaaaaa #ffffff #ffffff
+client.focused_inactive #000000 #000000 #ffffff #888888
+client.unfocused #000000 #000000 #ffffff #888888
+client.urgent #ff0000 #ff0000 #ffffff #ff0000
+
+floating_minimum_size 1 x 1
+floating_maximum_size -1 x -1
+
+# floats
+for_window [class="Xmessage"] floating enable
+for_window [class="qemu"] floating enable
+for_window [class="Gimp"] floating enable
+for_window [instance="pwsafe"] floating enable
+for_window [instance="pwsafe"] move absolute position 0 px 0 px
+for_window [instance="urxvt-kuake"] floating enable
+for_window [instance="urxvt-kuake"] move absolute position 0 px 0 px
+for_window [class="qemu-system-x86_64"] floating enable
+for_window [class="plugin-container"] floating enable
+for_window [instance="explorer.exe"] floating enable
+for_window [instance="winecfg.exe"] floating enable
+for_window [instance="winedbg.exe"] floating enable
+for_window [window_role="CallWindow"] floating enable
+
+# special desktops
+for_window [class="Xpdf"] move window to workspace 4
+for_window [class="feh"] move window to workspace 4
+
+# start programs
+bindsym $mod+o exec urxvtc
+bindsym $mod+b exec firefox
+bindsym $mod+i exec dmenu -p "pwsafe -p" < /dev/null | xargs -I{} urxvtc -name pwsafe -geometry 47x2 -e pwsafe -p {}
+bindsym $mod+Shift+i exec dmenu -p "pwsafe -up" < /dev/null | xargs -I{} urxvtc -name pwsafe -geometry 47x2 -e pwsafe -up {}
+bindsym $mod+r exec dmenu_run
+
+# XXX
+# bindsym $mod+Shift+o exec urxvtc; exec urxvtc; exec sleep 1; split v; exec urxvtc; exec urxvtc; exec sleep 1; focus left; split v; exec urxvtc
+
+# kill focused window
+bindsym $mod+q kill
+
+# window manipulation
+bindsym $mod+h focus left
+bindsym $mod+j focus down
+bindsym $mod+k focus up
+bindsym $mod+l focus right
+
+bindsym $mod+Shift+h move left
+bindsym $mod+Shift+j move down
+bindsym $mod+Shift+k move up
+bindsym $mod+Shift+l move right
+
+bindsym $layout_mod+h split h
+bindsym $layout_mod+v split v
+
+bindsym $layout_mod+f fullscreen
+
+bindsym $layout_mod+Shift+space floating toggle
+bindsym $layout_mod+space focus mode_toggle
+
+# workspace manipulation
+bindsym $mod+Left workspace prev
+bindsym $mod+Right workspace next
+
+bindsym $mod+1 workspace 1
+bindsym $mod+2 workspace 2
+bindsym $mod+3 workspace 3
+bindsym $mod+4 workspace 4
+bindsym $mod+5 workspace 5
+bindsym $mod+6 workspace 6
+bindsym $mod+7 workspace 7
+bindsym $mod+8 workspace 8
+bindsym $mod+9 workspace 9
+
+bindsym $mod+Shift+Left move window to workspace prev
+bindsym $mod+Shift+Right move window to workspace next
+
+bindsym $mod+Shift+1 move container to workspace 1
+bindsym $mod+Shift+2 move container to workspace 2
+bindsym $mod+Shift+3 move container to workspace 3
+bindsym $mod+Shift+4 move container to workspace 4
+bindsym $mod+Shift+5 move container to workspace 5
+bindsym $mod+Shift+6 move container to workspace 6
+bindsym $mod+Shift+7 move container to workspace 7
+bindsym $mod+Shift+8 move container to workspace 8
+bindsym $mod+Shift+9 move container to workspace 9
+
+# reload the configuration file
+bindsym $mod+c reload
+# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
+bindsym $mod+Shift+c restart
+# exit i3 (logs you out of your X session)
+bindsym $mod+Shift+q exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
+
+# Start i3bar to display a workspace bar (plus the system information i3status
+# finds out, if available)
+bar {
+ tray_output primary
+ status_command ~/.bin/status
+}