]> git.sur5r.net Git - i3/i3/blob - man/i3.man
Merge branch 'master' into next
[i3/i3] / man / i3.man
1 i3(1)
2 =====
3 Michael Stapelberg <michael@i3wm.org>
4 v4.3, September 2012
5
6 == NAME
7
8 i3 - an improved dynamic, tiling window manager
9
10 == SYNOPSIS
11
12 i3 [-a] [-c configfile] [-C] [-d all] [-v] [-V]
13
14 == OPTIONS
15
16 -a::
17 Disables autostart.
18
19 -c::
20 Specifies an alternate configuration file path.
21
22 -C::
23 Check the configuration file for validity and exit.
24
25 -d all::
26 Enables debug logging.
27 The 'all' parameter is present for historical reasons.
28
29 -v::
30 Display version number (and date of the last commit).
31
32 -V::
33 Be verbose.
34
35 --force-xinerama::
36 Use Xinerama instead of RandR. This option should only be used if you are stuck
37 with the old nVidia closed source driver (older than 302.17) which does not
38 support RandR.
39
40 --get-socketpath::
41 Retrieve the i3 IPC socket path from X11, print it, then exit.
42
43 --shmlog-size <limit>::
44 Limits the size of the i3 SHM log to <limit> bytes. Setting this to 0 disables
45 SHM logging entirely. The default is 0 bytes.
46
47 == DESCRIPTION
48
49 === INTRODUCTION
50
51 i3 was created because wmii, our favorite window manager at the time, didn’t
52 provide some features we wanted (multi-monitor done right, for example), had
53 some bugs, didn’t progress since quite some time and wasn’t easy to hack at all
54 (source code comments/documentation completely lacking). Still, we think the
55 wmii developers and contributors did a great job. Thank you for inspiring us to
56 create i3.
57
58 Please be aware that i3 is primarily targeted at advanced users and developers.
59
60 === IMPORTANT NOTE TO nVidia BINARY DRIVER USERS
61
62 If you are using the nVidia binary graphics driver (also known as 'blob')
63 before version 302.17, you need to use the +--force-xinerama+ flag (in your
64 ~/.xsession) when starting i3, like so:
65
66 ----------------------------------------------
67 exec i3 --force-xinerama -V >>~/.i3/i3log 2>&1
68 ----------------------------------------------
69
70 See also docs/multi-monitor for the full explanation.
71
72 === TERMINOLOGY
73
74 Tree::
75 i3 keeps your layout in a tree data structure.
76
77 Window::
78 An X11 window, like the Firefox browser window or a terminal emulator.
79
80 Split container::
81 A split container contains multiple other split containers or windows.
82 +
83 Containers can be used in various layouts. The default mode is called "default"
84 and just resizes each client equally so that it fits.
85
86 Workspace::
87 A workspace is a set of containers. Other window managers call this "Virtual
88 Desktops".
89 +
90 In i3, each workspace is assigned to a specific virtual screen. By default,
91 screen 1 has workspace 1, screen 2 has workspace 2 and so on… However, when you
92 create a new workspace (by simply switching to it), it’ll be assigned the
93 screen you are currently on.
94
95 Output::
96 Using XRandR, you can have an X11 screen spanning multiple real monitors.
97 Furthermore, you can set them up in cloning mode or with positions (monitor 1
98 is left of monitor 2).
99 +
100 i3 uses the RandR API to query which outputs are available and which screens
101 are connected to these outputs.
102
103 == KEYBINDINGS
104
105 Here is a short overview of the default keybindings:
106
107 Mod1+Enter::
108 Open a new terminal emulator window.
109
110 Mod1+d::
111 Open dmenu for starting any application by typing (part of) its name.
112
113 j/k/l/;::
114 Direction keys (left, down, up, right). They are on your homerow (see the mark
115 on your "j" key). Alternatively, you can use the cursor keys.
116
117 Mod1+<direction>::
118 Focus window in <direction>.
119
120 Mod1+Shift+<direction>::
121 Move window to <direction>.
122
123 Mod1+<number>::
124 Switch to workspace <number>.
125
126 Mod1+Shift+<number>::
127 Move window to workspace <number>.
128
129 Mod1+f::
130 Toggle fullscreen mode.
131
132 Mod1+s::
133 Enable stacking layout for the current container.
134
135 Mod1+e::
136 Enable default layout for the current container.
137
138 Mod1+w::
139 Enable tabbed layout for the current container.
140
141 Mod1+Shift+Space::
142 Toggle tiling/floating for the current container.
143
144 Mod1+Space::
145 Select the first tiling container if the current container is floating and
146 vice-versa.
147
148 Mod1+Shift+q::
149 Kills the current window. This is equivalent to "clicking on the close button",
150 meaning a polite request to the application to close this window. For example,
151 Firefox will save its session upon such a request. If the application does not
152 support that, the window will be killed and it depends on the application what
153 happens.
154
155 Mod1+Shift+r::
156 Restarts i3 in place. Your layout will be preserved.
157
158 Mod1+Shift+e::
159 Exits i3.
160
161 == FILES
162
163 === \~/.i3/config (or ~/.config/i3/config)
164
165 When starting, i3 looks for configuration files in the following order:
166
167 1. ~/.config/i3/config (or $XDG_CONFIG_HOME/i3/config if set)
168 2. /etc/xdg/i3/config (or $XDG_CONFIG_DIRS/i3/config if set)
169 3. ~/.i3/config
170 4. /etc/i3/config
171
172 You can specify a custom path using the -c option.
173
174 .Sample configuration
175 -------------------------------------------------------------
176 # i3 config file (v4)
177
178 # font for window titles. also used by the bar (unless a different font is
179 # used in the bar {} block. ISO 10646 = Unicode
180 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
181
182 # use Mouse+Mod1 to drag floating windows to their wanted position
183 floating_modifier Mod1
184
185 # start a terminal
186 bindsym Mod1+Return exec /usr/bin/urxvt
187
188 # kill focused window
189 bindsym Mod1+Shift+q kill
190
191 # start dmenu (a program launcher)
192 bindsym Mod1+d exec /usr/bin/dmenu_run
193
194 # change focus
195 bindsym Mod1+j focus left
196 bindsym Mod1+k focus down
197 bindsym Mod1+l focus up
198 bindsym Mod1+semicolon focus right
199
200 # alternatively, you can use the cursor keys:
201 bindsym Mod1+Left focus left
202 bindsym Mod1+Down focus down
203 bindsym Mod1+Up focus up
204 bindsym Mod1+Right focus right
205
206 # move focused window
207 bindsym Mod1+Shift+j move left
208 bindsym Mod1+Shift+k move down
209 bindsym Mod1+Shift+l move up
210 bindsym Mod1+Shift+semicolon move right
211
212 # alternatively, you can use the cursor keys:
213 bindsym Mod1+Shift+Left move left
214 bindsym Mod1+Shift+Down move down
215 bindsym Mod1+Shift+Up move up
216 bindsym Mod1+Shift+Right move right
217
218 # split in horizontal orientation
219 bindsym Mod1+h split h
220
221 # split in vertical orientation
222 bindsym Mod1+v split v
223
224 # enter fullscreen mode for the focused container
225 bindsym Mod1+f fullscreen
226
227 # change container layout (stacked, tabbed, default)
228 bindsym Mod1+s layout stacking
229 bindsym Mod1+w layout tabbed
230 bindsym Mod1+e layout default
231
232 # toggle tiling / floating
233 bindsym Mod1+Shift+space floating toggle
234
235 # change focus between tiling / floating windows
236 bindsym Mod1+space focus mode_toggle
237
238 # focus the parent container
239 bindsym Mod1+a focus parent
240
241 # focus the child container
242 #bindsym Mod1+d focus child
243
244 # switch to workspace
245 bindsym Mod1+1 workspace 1
246 bindsym Mod1+2 workspace 2
247 # ..
248
249 # move focused container to workspace
250 bindsym Mod1+Shift+1 move workspace 1
251 bindsym Mod1+Shift+2 move workspace 2
252 # ...
253
254 # reload the configuration file
255 bindsym Mod1+Shift+c reload
256 # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
257 bindsym Mod1+Shift+r restart
258 # exit i3 (logs you out of your X session)
259 bindsym Mod1+Shift+e exit
260
261 # display workspace buttons plus a statusline generated by i3status
262 bar {
263     status_command i3status
264 }
265 -------------------------------------------------------------
266
267 === ~/.xsession
268
269 This file is where you should configure your locales and start i3. It is run by
270 your login manager (xdm, slim, gdm, …) as soon as you login.
271
272 .Sample xsession
273 -------------------------------------------------------------
274 # Disable DPMS turning off the screen
275 xset -dpms
276 xset s off
277
278 # Disable bell
279 xset -b
280
281 # Enable zapping (C-A-<Bksp> kills X)
282 setxkbmap -option terminate:ctrl_alt_bksp
283
284 # Enforce correct locales from the beginning:
285 # LC_ALL is unset since it overwrites everything
286 # LANG=de_DE.UTF-8 is used, except for:
287 # LC_MESSAGES=C never translates program output
288 # LC_TIME=en_DK leads to yyyy-mm-dd hh:mm date/time output
289 unset LC_ALL
290 export LANG=de_DE.UTF-8
291 export LC_MESSAGES=C
292 export LC_TIME=en_DK.UTF-8
293
294 # Use XToolkit in java applications
295 export AWT_TOOLKIT=XToolkit
296
297 # Set background color
298 xsetroot -solid "#333333"
299
300 # Enable core dumps in case something goes wrong
301 ulimit -c unlimited
302
303 # Start i3 and log to ~/.i3/logfile
304 echo "Starting at $(date)" >> ~/.i3/logfile
305 exec /usr/bin/i3 -V -d all >> ~/.i3/logfile
306 -------------------------------------------------------------
307
308 == ENVIRONMENT
309
310 === I3SOCK
311
312 This variable overwrites the IPC socket path (placed in
313 /tmp/i3-%u.XXXXXX/ipc-socket.%p by default, where %u is replaced with your UNIX
314 username, %p is replaced with i3’s PID and XXXXXX is a string of random
315 characters from the portable filename character set (see mkdtemp(3))). The IPC
316 socket is used by external programs like i3-msg(1) or i3bar(1).
317
318 == TODO
319
320 There is still lot of work to do. Please check our bugtracker for up-to-date
321 information about tasks which are still not finished.
322
323 == SEE ALSO
324
325 You should have a copy of the userguide (featuring nice screenshots/graphics
326 which is why this is not integrated into this manpage), the debugging guide,
327 and the "how to hack" guide. If you are building from source, run:
328  +make -C docs+
329
330 You can also access these documents online at http://i3wm.org/
331
332 i3-input(1), i3-msg(1), i3bar(1), i3-nagbar(1), i3-config-wizard(1),
333 i3-migrate-config-to-v4(1)
334
335 == AUTHOR
336
337 Michael Stapelberg and contributors