]> git.sur5r.net Git - i3/i3/blob - i3.config
Document binding on Mode_switch in userguide, be more verbose in config
[i3/i3] / i3.config
1 # This configuration uses Mod1 and Mod3. Make sure they are mapped properly using xev(1)
2 # and xmodmap(1). Usually, Mod1 is Alt (Alt_L) and Mod3 is Windows (Super_L)
3
4 # Tell i3 about your preferred terminal. You can refer to this as $terminal
5 # later. It is recommended to set this option to allow i3 to open a terminal
6 # containing the introduction on first start.
7 terminal /usr/bin/urxvt
8
9 # ISO 10646 = Unicode
10 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
11
12 # Fullscreen (Mod1+f)
13 bind Mod1+41 f
14
15 # Stacking (Mod1+h)
16 bind Mod1+43 s
17
18 # Default (Mod1+e)
19 bind Mod1+26 d
20
21 # Toggle tiling/floating of the current window
22 bind Mod1+Shift+65 t
23
24 # Focus (Mod1+j/k/l/;)
25 bind Mod1+44 h
26 bind Mod1+45 j
27 bind Mod1+46 k
28 bind Mod1+47 l
29
30 # Focus Container (Mod3+j/k/l/;)
31 bind Mod3+44 wch
32 bind Mod3+45 wcj
33 bind Mod3+46 wck
34 bind Mod3+47 wcl
35
36 # Snap (Mod1+Control+j/k/l/;)
37 bind Mod1+Control+44 sh
38 bind Mod1+Control+45 sj
39 bind Mod1+Control+46 sk
40 bind Mod1+Control+47 sl
41
42 # Move (Mod1+Shift+j/k/l/;)
43 bind Mod1+Shift+44 mh
44 bind Mod1+Shift+45 mj
45 bind Mod1+Shift+46 mk
46 bind Mod1+Shift+47 ml
47
48 # Move Container (Mod3+Shift+j/k/l/;)
49 bind Mod3+Shift+44 wcmh
50 bind Mod3+Shift+45 wcmj
51 bind Mod3+Shift+46 wcmk
52 bind Mod3+Shift+47 wcml
53
54 # Workspaces (Mod1+1/2/…)
55 bind Mod1+10 1
56 bind Mod1+11 2
57 bind Mod1+12 3
58 bind Mod1+13 4
59 bind Mod1+14 5
60 bind Mod1+15 6
61 bind Mod1+16 7
62 bind Mod1+17 8
63 bind Mod1+18 9
64 bind Mod1+19 10
65
66 # Move to Workspaces
67 bind Mod1+Shift+10 m1
68 bind Mod1+Shift+11 m2
69 bind Mod1+Shift+12 m3
70 bind Mod1+Shift+13 m4
71 bind Mod1+Shift+14 m5
72 bind Mod1+Shift+15 m6
73 bind Mod1+Shift+16 m7
74 bind Mod1+Shift+17 m8
75 bind Mod1+Shift+18 m9
76 bind Mod1+Shift+19 m10
77
78 # Mod1+Enter starts a new terminal
79 bind Mod1+36 exec /usr/bin/urxvt
80
81 # Mod1+Shift+q kills the current client
82 bind Mod1+Shift+24 kill
83
84 # Mod1+v starts dmenu and launches the selected application
85 # for now, we don’t have an own launcher
86 bind Mod1+55 exec /usr/bin/dmenu_run
87
88 # Mod1+Shift+e exits i3
89 bind Mod1+Shift+26 exit
90
91 # Mod1+Shift+r restarts i3 inplace
92 bind Mod1+Shift+27 restart