]> git.sur5r.net Git - i3/i3/blob - man/i3.man
Use UTF-8 for all locale types in the manpage.
[i3/i3] / man / i3.man
1 i3(1)
2 =====
3 Michael Stapelberg <michael+i3@stapelberg.de>
4 v3.alpha-bf1, May 2009
5
6 == NAME
7
8 i3 - an improved dynamic, tiling window manager
9
10 == SYNOPSIS
11
12 i3 [-c configfile]
13
14 == DESCRIPTION
15
16 === INTRODUCTION
17
18 i3 was created because wmii, our favorite window manager at the time, didn’t
19 provide some features we wanted (Xinerama done right, for example), had some
20 bugs, didn’t progress since quite some time and wasn’t easy to hack at all
21 (source code comments/documentation completely lacking). Still, we think the
22 wmii developers and contributors did a great job. Thank you for inspiring us to
23 create i3.
24
25 Please be aware that i3 is primarily targeted at advanced users and developers.
26
27 === TERMINOLOGY
28
29 Client::
30 A client is X11-speak for a window.
31
32 Table::
33 Your workspace is managed using a table. You can move windows around and create new columns
34 (move a client to the right) or rows (move it to the bottom) implicitly.
35 +
36 By "snapping" a client in a specific direction, you increase its colspan/rowspan.
37
38 Container::
39 A container contains a variable number of clients. Each cell of the table is a container.
40 +
41 Containers can be used in various modes. The default mode is called "default" and just
42 resizes each client equally so that it fits.
43
44 Workspace::
45 A workspace is a set of clients (technically speaking, it’s just a table). Other window
46 managers call this "Virtual Desktops".
47 +
48 In i3, each workspace is assigned to a specific virtual screen. By default, screen 1
49 has workspace 1, screen 2 has workspace 2 and so on… However, when you create a new
50 workspace (by simply switching to it), it’ll be assigned the screen you are currently
51 on.
52
53 Virtual Screen::
54 Using Xinerama, you can have an X11 screen spanning multiple real monitors. Furthermore,
55 you can set them up in cloning mode or with positions (monitor 1 is left of monitor 2).
56 +
57 A virtual screen is the result of your Xinerama setup. For example, if you have attached
58 two real monitors (let’s say your laptop screen and a video projector) and enabled cloning, i3
59 will use one virtual screen with the size of the smallest screen you have attached (so
60 that you can see all your windows on each screen all the time).
61 If you have two monitors attached, one configured to be left of the other, i3 will use
62 two virtual screens.
63
64 == KEYBINDINGS
65
66 Here is a short overview of the default keybindings:
67
68 j/k/l/;::
69 Direction keys (left, down, up, right). They are on your homerow (see the mark on your "j" key).
70
71 Mod1+<direction>::
72 Focus window in <direction>.
73
74 Mod3+<direction>::
75 Focus container in <direction>.
76
77 Mod1+Shift+<direction>::
78 Move window to <direction>.
79
80 Mod3+Shift+<direction>::
81 Move container to <direction>.
82
83 Mod1+Control+<direction>::
84 Snap container to <direction>.
85
86 Mod1+<number>::
87 Switch to workspace <number>.
88
89 Mod1+Shift+<number>::
90 Move window to workspace <number>.
91
92 Mod1+f::
93 Toggle fullscreen mode.
94
95 Mod1+h::
96 Enable stacking layout for the current container.
97
98 Mod1+e::
99 Enable default layout for the current container.
100
101 Mod1+Shift+q::
102 Kills the current client.
103
104 Mod1+Shift+r::
105 Restarts i3 in place (without losing any windows, but the layout).
106
107 Mod1+Shift+e::
108 Exits i3.
109
110 == FILES
111
112 === ~/.i3/config
113
114 When starting, i3 looks for ~/.i3/config and loads the configuration. If ~/.i3/config is not found,
115 i3 tries /etc/i3/config. You can specify a custom path using the -c option.
116
117 At the moment, you can specify only the path to your favorite terminal emulator, the font and keybindings.
118
119 At the moment, you have to bind to keycodes (find them out via xev(1)).
120
121 .Sample configuration
122 -------------------------------------------------------------
123 terminal /usr/bin/urxvt
124 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
125
126 # Start terminal (Mod1+Enter)
127 bind Mod1+36 exec /usr/bin/urxvt
128
129 # Start dmenu (Mod1+v)
130 bind Mod1+55 exec /usr/bin/dmenu_run
131
132 # Kill current client (Mod1+Shift+q)
133 bind Mod1+Shift+24 kill
134
135 # Beamer on/off
136 bind Mod1+73 exec /home/michael/toggle_beamer.sh
137
138 # Screen locking
139 bind Mod1+68 exec /usr/bin/i3lock
140
141 # Restart i3 inplace (Mod1+Shift+r)
142 bind Mod1+Shift+27 restart
143
144 # Exit i3 (Mod1+Shift+e)
145 bind Mod1+Shift+26 exit
146
147 # Brightness
148 bind Mod1+97 exec sudo sh -c "echo up > /proc/acpi/ibm/brightness"
149 bind Mod1+103 exec sudo sh -c "echo down > /proc/acpi/ibm/brightness"
150
151 # Fullscreen (Mod1+f)
152 bind Mod1+41 f
153
154 # Stacking (Mod1+h)
155 bind Mod1+43 s
156
157 # Default (Mod1+e)
158 bind Mod1+26 d
159
160 # Focus (Mod1+j/k/l/;)
161 bind Mod1+44 h
162 bind Mod1+45 j
163 bind Mod1+46 k
164 bind Mod1+47 l
165
166 # Focus Container (Mod3+j/k/l/;)
167 bind Mod3+44 wch
168 bind Mod3+45 wcj
169 bind Mod3+46 wck
170 bind Mod3+47 wcl
171
172 # Snap (Mod1+Control+j/k/l/;)
173 bind Mod1+Control+44 sh
174 bind Mod1+Control+45 sj
175 bind Mod1+Control+46 sk
176 bind Mod1+Control+47 sl
177
178 # Move (Mod1+Shift+j/k/l/;)
179 bind Mod1+Shift+44 mh
180 bind Mod1+Shift+45 mj
181 bind Mod1+Shift+46 mk
182 bind Mod1+Shift+47 ml
183
184 # Move Container (Mod3+Shift+j/k/l/;)
185 bind Mod3+Shift+44 wcmh
186 bind Mod3+Shift+45 wcmj
187 bind Mod3+Shift+46 wcmk
188 bind Mod3+Shift+47 wcml
189
190 # Workspaces
191 bind Mod1+10 1
192 bind Mod1+11 2
193 ...
194
195 # Move to Workspace
196 bind Mod1+Shift+10 1
197 bind Mod1+Shift+11 2
198 ...
199 -------------------------------------------------------------
200
201 === ~/.xsession
202
203 This file is where you should configure your locales and start i3. It is run by
204 your login manager (xdm, slim, gdm, …) as soon as you login.
205
206 .Sample xsession
207 -------------------------------------------------------------
208 # Disable DPMS turning off the screen
209 xset dpms force on
210 xset s off
211 # Disable bell
212 xset -b
213
214 # Enforce correct locales from the beginning
215 unset LC_COLLATE
216 export LC_CTYPE=de_DE.UTF-8
217 export LC_TIME=de_DE.UTF-8
218 export LC_NUMERIC=de_DE.UTF-8
219 export LC_MONETARY=de_DE.UTF-8
220 export LC_MESSAGES=C
221 export LC_PAPER=de_DE.UTF-8
222 export LC_NAME=de_DE.UTF-8
223 export LC_ADDRESS=de_DE.UTF-8
224 export LC_TELEPHONE=de_DE.UTF-8
225 export LC_MEASUREMENT=de_DE.UTF-8
226 export LC_IDENTIFICATION=de_DE.UTF-8
227
228 # Enable core dumps in case something goes wrong
229 ulimit -c unlimited
230
231 # Start i3 and log to ~/.i3/logfile
232 echo "Starting at $(date)" >> ~/.i3/logfile
233 exec /usr/bin/i3 >> ~/.i3/logfile
234 -------------------------------------------------------------
235
236 == TODO
237
238 There is still lot of work to do. Please check our bugtracker for up-to-date information
239 about tasks which are still not finished.
240
241 == AUTHOR
242
243 Michael Stapelberg and contributors