diff options
author | Stefan Ritter <gideonstar@thehappy.de> | 2009-09-11 13:53:16 +0200 |
---|---|---|
committer | Stefan Ritter <gideonstar@thehappy.de> | 2009-09-11 13:53:16 +0200 |
commit | 044542fc84b0e1a816b8f8cee1422c94e3873c89 (patch) | |
tree | 8c55d1fb43439ba522b01cdd3398d9e2305685a4 | |
parent | f8a6f3d0a3772366995c1effe0fedb9f96eb5ed4 (diff) |
Added i3 config
Diffstat (limited to '')
-rw-r--r-- | i3/config | 60 | ||||
-rwxr-xr-x | xinitrc | 2 |
2 files changed, 61 insertions, 1 deletions
diff --git a/i3/config b/i3/config new file mode 100644 index 0000000..36f889f --- /dev/null +++ b/i3/config @@ -0,0 +1,60 @@ +font -misc-fixed-medium-r-normal--13-*-*-*-*-*-*-* + +terminal /usr/bin/urxvt +bind Mod1+36 exec /usr/bin/urxvt + +floating_modifier Mod1 + +# Fullscreen, Stacked, Default +bind Mod1+58 f +bind Mod1+43 s +bind Mod1+47 d + +# Focus (Mod1+j/k/l/;) +bind Mod1+44 h +bind Mod1+45 j +bind Mod1+31 k +bind Mod1+46 l + +# Move +bind Mod1+Shift+44 mh +bind Mod1+Shift+45 mj +bind Mod1+Shift+31 mk +bind Mod1+Shift+46 ml + +# Workspaces +bind Mod1+10 1 +bind Mod1+11 2 +bind Mod1+12 3 +bind Mod1+13 4 +bind Mod1+14 5 +bind Mod1+15 6 +bind Mod1+16 7 +bind Mod1+17 8 +bind Mod1+18 9 +bind Mod1+19 10 + +# Move to workspaces +bind Mod1+Shift+10 m1 +bind Mod1+Shift+11 m2 +bind Mod1+Shift+12 m3 +bind Mod1+Shift+13 m4 +bind Mod1+Shift+14 m5 +bind Mod1+Shift+15 m6 +bind Mod1+Shift+16 m7 +bind Mod1+Shift+17 m8 +bind Mod1+Shift+18 m9 +bind Mod1+Shift+19 m10 + +# Stuff +bind Mod1+Shift+30 kill +bind Mod1+33 exec /usr/bin/dmenu_run +bind Mod1+Shift+33 exit +bind Mod1+Shift+45 restart + +# Style +bar.focused #111111 #000000 #CCCCCC +bar.unfocused #111111 #000000 #111111 +client.focused #111111 #000000 #CCCCCC +client.unfocused #111111 #000000 #111111 +client.focused_inactive #111111 #000000 #111111 @@ -1,5 +1,5 @@ #!/bin/bash -WM='wmii' +WM='i3' keychain --clear -q ~/.ssh/id_rsa source ~/.keychain/`hostname`-sh > /dev/null |