]> git.sur5r.net Git - i3/i3/blob - docs/userguide
Added to note to clarify which config directives could be used at runtime.
[i3/i3] / docs / userguide
1 i3 User’s Guide
2 ===============
3 Michael Stapelberg <michael@i3wm.org>
4
5 This document contains all the information you need to configure and use the i3
6 window manager. If it does not, please check https://www.reddit.com/r/i3wm/
7 first, then contact us on IRC (preferred) or post your question(s) on the
8 mailing list.
9
10 == Default keybindings
11
12 For the "too long; didn’t read" people, here is an overview of the default
13 keybindings (click to see the full-size image):
14
15 *Keys to use with $mod (Alt):*
16
17 image:keyboard-layer1.png["Keys to use with $mod (Alt)",width=600,link="keyboard-layer1.png"]
18
19 *Keys to use with Shift+$mod:*
20
21 image:keyboard-layer2.png["Keys to use with Shift+$mod",width=600,link="keyboard-layer2.png"]
22
23 The red keys are the modifiers you need to press (by default), the blue keys
24 are your homerow.
25
26 Note that when starting i3 without a config file, i3-config-wizard will offer
27 you to create a config file in which the key positions (!) match what you see
28 in the image above, regardless of the keyboard layout you are using. If you
29 prefer to use a config file where the key letters match what you are seeing
30 above, just decline i3-config-wizard’s offer and base your config on
31 +/etc/i3/config+.
32
33 == Using i3
34
35 Throughout this guide, the keyword +$mod+ will be used to refer to the
36 configured modifier. This is the Alt key (+Mod1+) by default, with the Windows
37 key (+Mod4+) being a popular alternative that largely prevents conflicts with
38 application-defined shortcuts.
39
40 === Opening terminals and moving around
41
42 One very basic operation is opening a new terminal. By default, the keybinding
43 for this is +$mod+Enter+, that is Alt+Enter (+Mod1+Enter+) in the default
44 configuration. By pressing +$mod+Enter+, a new terminal will be opened.  It
45 will fill the whole space available on your screen.
46
47 image:single_terminal.png[Single terminal]
48
49 If you now open another terminal, i3 will place it next to the current one,
50 splitting the screen size in half. Depending on your monitor, i3 will put the
51 created window beside the existing window (on wide displays) or below the
52 existing window (rotated displays).
53
54 image:two_terminals.png[Two terminals]
55
56 To move the focus between the two terminals, you can use the direction keys
57 which you may know from the editor +vi+. However, in i3, your homerow is used
58 for these keys (in +vi+, the keys are shifted to the left by one for
59 compatibility with most keyboard layouts). Therefore, +$mod+j+ is left, +$mod+k+
60 is down, +$mod+l+ is up and `$mod+;` is right. So, to switch between the
61 terminals, use +$mod+k+ or +$mod+l+. Of course, you can also use the arrow keys.
62
63 At the moment, your workspace is split (it contains two terminals) in a
64 specific direction (horizontal by default). Every window can be split
65 horizontally or vertically again, just like the workspace. The terminology is
66 "window" for a container that actually contains an X11 window (like a terminal
67 or browser) and "split container" for containers that consist of one or more
68 windows.
69
70 TODO: picture of the tree
71
72 To split a window vertically, press +$mod+v+ before you create the new window.
73 To split it horizontally, press +$mod+h+.
74
75 === Changing the container layout
76
77 A split container can have one of the following layouts:
78
79 splith/splitv::
80 Windows are sized so that every window gets an equal amount of space in the
81 container. splith distributes the windows horizontally (windows are right next
82 to each other), splitv distributes them vertically (windows are on top of each
83 other).
84 stacking::
85 Only the focused window in the container is displayed. You get a list of
86 windows at the top of the container.
87 tabbed::
88 The same principle as +stacking+, but the list of windows at the top is only
89 a single line which is vertically split.
90
91 To switch modes, press +$mod+e+ for splith/splitv (it toggles), +$mod+s+ for
92 stacking and +$mod+w+ for tabbed.
93
94 image:modes.png[Container modes]
95
96 === Toggling fullscreen mode for a window
97
98 To display a window in fullscreen mode or to go out of fullscreen mode again,
99 press +$mod+f+.
100
101 There is also a global fullscreen mode in i3 in which the client will span all
102 available outputs (the command is +fullscreen toggle global+).
103
104 === Opening other applications
105
106 Aside from opening applications from a terminal, you can also use the handy
107 +dmenu+ which is opened by pressing +$mod+d+ by default. Just type the name
108 (or a part of it) of the application which you want to open. The corresponding
109 application has to be in your +$PATH+ for this to work.
110
111 Additionally, if you have applications you open very frequently, you can
112 create a keybinding for starting the application directly. See the section
113 <<configuring>> for details.
114
115 === Closing windows
116
117 If an application does not provide a mechanism for closing (most applications
118 provide a menu, the escape key or a shortcut like +Control+w+ to close), you
119 can press +$mod+Shift+q+ to kill a window. For applications which support
120 the WM_DELETE protocol, this will correctly close the application (saving
121 any modifications or doing other cleanup). If the application doesn’t support
122 the WM_DELETE protocol your X server will kill the window and the behaviour
123 depends on the application.
124
125 === Using workspaces
126
127 Workspaces are an easy way to group a set of windows. By default, you are on
128 the first workspace, as the bar on the bottom left indicates. To switch to
129 another workspace, press +$mod+num+ where +num+ is the number of the workspace
130 you want to use. If the workspace does not exist yet, it will be created.
131
132 A common paradigm is to put the web browser on one workspace, communication
133 applications (+mutt+, +irssi+, ...) on another one, and the ones with which you
134 work, on the third one. Of course, there is no need to follow this approach.
135
136 If you have multiple screens, a workspace will be created on each screen at
137 startup. If you open a new workspace, it will be bound to the screen you
138 created it on.  When you switch to a workspace on another screen, i3 will set
139 focus to that screen.
140
141 === Moving windows to workspaces
142
143 To move a window to another workspace, simply press +$mod+Shift+num+ where
144 +num+ is (like when switching workspaces) the number of the target workspace.
145 Similarly to switching workspaces, the target workspace will be created if
146 it does not yet exist.
147
148 === Resizing
149
150 The easiest way to resize a container is by using the mouse: Grab the border
151 and move it to the wanted size.
152
153 You can also use <<binding_modes>> to define a mode for resizing via the
154 keyboard. To see an example for this, look at the
155 https://github.com/i3/i3/blob/next/etc/config.keycodes[default config] provided
156 by i3.
157
158 === Restarting i3 inplace
159
160 To restart i3 in place (and thus get into a clean state if there is a bug, or
161 to upgrade to a newer version of i3) you can use +$mod+Shift+r+.
162
163 === Exiting i3
164
165 To cleanly exit i3 without killing your X server, you can use +$mod+Shift+e+.
166 By default, a dialog will ask you to confirm if you really want to quit.
167
168 === Floating
169
170 Floating mode is the opposite of tiling mode. The position and size of
171 a window are not managed automatically by i3, but manually by
172 you. Using this mode violates the tiling paradigm but can be useful
173 for some corner cases like "Save as" dialog windows, or toolbar
174 windows (GIMP or similar). Those windows usually set the appropriate
175 hint and are opened in floating mode by default.
176
177 You can toggle floating mode for a window by pressing +$mod+Shift+Space+. By
178 dragging the window’s titlebar with your mouse you can move the window
179 around. By grabbing the borders and moving them you can resize the window. You
180 can also do that by using the <<floating_modifier>>. Another way to resize
181 floating windows using the mouse is to right-click on the titlebar and drag.
182
183 For resizing floating windows with your keyboard, see the resizing binding mode
184 provided by the i3 https://github.com/i3/i3/blob/next/etc/config.keycodes[default config].
185
186 Floating windows are always on top of tiling windows.
187
188 == Tree
189
190 i3 stores all information about the X11 outputs, workspaces and layout of the
191 windows on them in a tree. The root node is the X11 root window, followed by
192 the X11 outputs, then dock areas and a content container, then workspaces and
193 finally the windows themselves. In previous versions of i3 we had multiple lists
194 (of outputs, workspaces) and a table for each workspace. That approach turned
195 out to be complicated to use (snapping), understand and implement.
196
197 === The tree consists of Containers
198
199 The building blocks of our tree are so-called +Containers+. A +Container+ can
200 host a window (meaning an X11 window, one that you can actually see and use,
201 like a browser). Alternatively, it could contain one or more +Containers+. A
202 simple example is the workspace: When you start i3 with a single monitor, a
203 single workspace and you open two terminal windows, you will end up with a tree
204 like this:
205
206 image::tree-layout2.png["layout2",float="right"]
207 image::tree-shot4.png["shot4",title="Two terminals on standard workspace"]
208
209 [[OrientationSplit]]
210 === Orientation and Split Containers
211
212 It is only natural to use so-called +Split Containers+ in order to build a
213 layout when using a tree as data structure. In i3, every +Container+ has an
214 orientation (horizontal, vertical or unspecified) and the orientation depends
215 on the layout the container is in (vertical for splitv and stacking, horizontal
216 for splith and tabbed). So, in our example with the workspace, the default
217 layout of the workspace +Container+ is splith (most monitors are widescreen
218 nowadays). If you change the layout to splitv (+$mod+v+ in the default config)
219 and *then* open two terminals, i3 will configure your windows like this:
220
221 image::tree-shot2.png["shot2",title="Vertical Workspace Orientation"]
222
223 An interesting new feature of i3 since version 4 is the ability to split anything:
224 Let’s assume you have two terminals on a workspace (with splith layout, that is
225 horizontal orientation), focus is on the right terminal. Now you want to open
226 another terminal window below the current one. If you would just open a new
227 terminal window, it would show up to the right due to the splith layout.
228 Instead, press +$mod+v+ to split the container with the splitv layout (to
229 open a +Horizontal Split Container+, use +$mod+h+). Now you can open a new
230 terminal and it will open below the current one:
231
232 image::tree-layout1.png["Layout",float="right"]
233 image::tree-shot1.png["shot",title="Vertical Split Container"]
234
235 unfloat::[]
236
237 You probably guessed it already: There is no limit on how deep your hierarchy
238 of splits can be.
239
240 === Focus parent
241
242 Let’s stay with our example from above. We have a terminal on the left and two
243 vertically split terminals on the right, focus is on the bottom right one. When
244 you open a new terminal, it will open below the current one.
245
246 So, how can you open a new terminal window to the *right* of the current one?
247 The solution is to use +focus parent+, which will focus the +Parent Container+ of
248 the current +Container+. In default configuration, use +$mod+a+ to navigate one 
249 +Container+ up the tree (you can repeat this multiple times until you get to the
250 +Workspace Container+). In this case, you would focus the +Vertical Split Container+
251 which is *inside* the horizontally oriented workspace. Thus, now new windows will be
252 opened to the right of the +Vertical Split Container+:
253
254 image::tree-shot3.png["shot3",title="Focus parent, then open new terminal"]
255
256 === Implicit containers
257
258 In some cases, i3 needs to implicitly create a container to fulfill your
259 command.
260
261 One example is the following scenario: You start i3 with a single monitor and a
262 single workspace on which you open three terminal windows. All these terminal
263 windows are directly attached to one node inside i3’s layout tree, the
264 workspace node. By default, the workspace node’s orientation is +horizontal+.
265
266 Now you move one of these terminals down (+$mod+Shift+k+ by default). The
267 workspace node’s orientation will be changed to +vertical+. The terminal window
268 you moved down is directly attached to the workspace and appears on the bottom
269 of the screen. A new (horizontal) container was created to accommodate the
270 other two terminal windows. You will notice this when switching to tabbed mode
271 (for example). You would end up having one tab with a representation of the split
272 container (e.g., "H[urxvt firefox]") and the other one being the terminal window
273 you moved down.
274
275 [[configuring]]
276 == Configuring i3
277
278 This is where the real fun begins ;-). Most things are very dependent on your
279 ideal working environment so we can’t make reasonable defaults for them.
280
281 While not using a programming language for the configuration, i3 stays
282 quite flexible in regards to the things you usually want your window manager
283 to do.
284
285 For example, you can configure bindings to jump to specific windows,
286 you can set specific applications to start on specific workspaces, you can
287 automatically start applications, you can change the colors of i3, and you
288 can bind your keys to do useful things.
289
290 To change the configuration of i3, copy +/etc/i3/config+ to +\~/.i3/config+
291 (or +~/.config/i3/config+ if you like the XDG directory scheme) and edit it
292 with a text editor.
293
294 On first start (and on all following starts, unless you have a configuration
295 file), i3 will offer you to create a configuration file. You can tell the
296 wizard to use either Alt (+Mod1+) or Windows (+Mod4+) as modifier in the config
297 file. Also, the created config file will use the key symbols of your current
298 keyboard layout. To start the wizard, use the command +i3-config-wizard+.
299 Please note that you must not have +~/.i3/config+, otherwise the wizard will
300 exit.
301
302 Since i3 4.0, a new configuration format is used. i3 will try to automatically
303 detect the format version of a config file based on a few different keywords,
304 but if you want to make sure that your config is read with the new format,
305 include the following line in your config file:
306
307 ---------------------
308 # i3 config file (v4)
309 ---------------------
310
311 === Comments
312
313 It is possible and recommended to use comments in your configuration file to
314 properly document your setup for later reference. Comments are started with
315 a # and can only be used at the beginning of a line:
316
317 *Examples*:
318 -------------------
319 # This is a comment
320 -------------------
321
322 [[fonts]]
323 === Fonts
324
325 i3 has support for both X core fonts and FreeType fonts (through Pango) to
326 render window titles.
327
328 To generate an X core font description, you can use +xfontsel(1)+. To see
329 special characters (Unicode), you need to use a font which supports the
330 ISO-10646 encoding.
331
332 A FreeType font description is composed by a font family, a style, a weight,
333 a variant, a stretch and a size.
334 FreeType fonts support right-to-left rendering and contain often more
335 Unicode glyphs than X core fonts.
336
337 If i3 cannot open the configured font, it will output an error in the logfile
338 and fall back to a working font.
339
340 *Syntax*:
341 ------------------------------
342 font <X core font description>
343 font pango:<family list> [<style options>] <size>
344 ------------------------------
345
346 *Examples*:
347 --------------------------------------------------------------
348 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
349 font pango:DejaVu Sans Mono 10
350 font pango:DejaVu Sans Mono, Terminus Bold Semi-Condensed 11
351 font pango:Terminus 11px
352 --------------------------------------------------------------
353
354 [[keybindings]]
355 === Keyboard bindings
356
357 A keyboard binding makes i3 execute a command (see below) upon pressing a
358 specific key. i3 allows you to bind either on keycodes or on keysyms (you can
359 also mix your bindings, though i3 will not protect you from overlapping ones).
360
361 * A keysym (key symbol) is a description for a specific symbol, like "a"
362   or "b", but also more strange ones like "underscore" instead of "_". These
363   are the ones you use in Xmodmap to remap your keys. To get the current
364   mapping of your keys, use +xmodmap -pke+. To interactively enter a key and
365   see what keysym it is configured to, use +xev+.
366
367 * Keycodes do not need to have a symbol assigned (handy for custom vendor
368   hotkeys on some notebooks) and they will not change their meaning as you
369   switch to a different keyboard layout (when using +xmodmap+).
370
371 My recommendation is: If you often switch keyboard layouts but you want to keep
372 your bindings in the same physical location on the keyboard, use keycodes.
373 If you don’t switch layouts, and want a clean and simple config file, use
374 keysyms.
375
376 Some tools (such as +import+ or +xdotool+) might be unable to run upon a
377 KeyPress event, because the keyboard/pointer is still grabbed. For these
378 situations, the +--release+ flag can be used, which will execute the command
379 after the keys have been released.
380
381 *Syntax*:
382 ----------------------------------
383 bindsym [--release] [<Group>+][<Modifiers>+]<keysym> command
384 bindcode [--release] [<Group>+][<Modifiers>+]<keycode> command
385 ----------------------------------
386
387 *Examples*:
388 --------------------------------
389 # Fullscreen
390 bindsym $mod+f fullscreen toggle
391
392 # Restart
393 bindsym $mod+Shift+r restart
394
395 # Notebook-specific hotkeys
396 bindcode 214 exec --no-startup-id /home/michael/toggle_beamer.sh
397
398 # Simulate ctrl+v upon pressing $mod+x
399 bindsym --release $mod+x exec --no-startup-id xdotool key --clearmodifiers ctrl+v
400
401 # Take a screenshot upon pressing $mod+x (select an area)
402 bindsym --release $mod+x exec --no-startup-id import /tmp/latest-screenshot.png
403 --------------------------------
404
405 Available Modifiers:
406
407 Mod1-Mod5, Shift, Control::
408 Standard modifiers, see +xmodmap(1)+
409
410 Group1, Group2, Group3, Group4::
411 When using multiple keyboard layouts (e.g. with `setxkbmap -layout us,ru`), you
412 can specify in which XKB group (also called “layout”) a keybinding should be
413 active. By default, keybindings are translated in Group1 and are active in all
414 groups. If you want to override keybindings in one of your layouts, specify the
415 corresponding group. For backwards compatibility, the group “Mode_switch” is an
416 alias for Group2.
417
418 [[mousebindings]]
419 === Mouse bindings
420
421 A mouse binding makes i3 execute a command upon pressing a specific mouse
422 button in the scope of the clicked container (see <<command_criteria>>). You
423 can configure mouse bindings in a similar way to key bindings.
424
425 *Syntax*:
426 ----------------------------------------------------------------------------------------------------
427 bindsym [--release] [--border] [--whole-window] [--exclude-titlebar] [<Modifiers>+]button<n> command
428 ----------------------------------------------------------------------------------------------------
429
430 By default, the binding will only run when you click on the titlebar of the
431 window. If the +--release+ flag is given, it will run when the mouse button
432 is released.
433
434 If the +--whole-window+ flag is given, the binding will also run when any part
435 of the window is clicked, with the exception of the border. To have a bind run
436 when the border is clicked, specify the +--border+ flag.
437
438 If the +--exclude-titlebar+ flag is given, the titlebar will not be considered
439 for the keybinding.
440
441 *Examples*:
442 --------------------------------
443 # The middle button over a titlebar kills the window
444 bindsym --release button2 kill
445
446 # The middle button and a modifer over any part of the window kills the window
447 bindsym --whole-window $mod+button2 kill
448
449 # The right button toggles floating
450 bindsym button3 floating toggle
451 bindsym $mod+button3 floating toggle
452
453 # The side buttons move the window around
454 bindsym button9 move left
455 bindsym button8 move right
456 --------------------------------
457
458 [[binding_modes]]
459 === Binding modes
460
461 You can have multiple sets of bindings by using different binding modes. When
462 you switch to another binding mode, all bindings from the current mode are
463 released and only the bindings defined in the new mode are valid for as long as
464 you stay in that binding mode. The only predefined binding mode is +default+,
465 which is the mode i3 starts out with and to which all bindings not defined in a
466 specific binding mode belong.
467
468 Working with binding modes consists of two parts: defining a binding mode and
469 switching to it. For these purposes, there are one config directive and one
470 command, both of which are called +mode+. The directive is used to define the
471 bindings belonging to a certain binding mode, while the command will switch to
472 the specified mode.
473
474 It is recommended to use binding modes in combination with <<variables>> in
475 order to make maintenance easier. Below is an example of how to use a binding
476 mode.
477
478 Note that it is advisable to define bindings for switching back to the default
479 mode.
480
481 Note that it is possible to use <<pango_markup>> for binding modes, but you
482 need to enable it explicitly by passing the +--pango_markup+ flag to the mode
483 definition.
484
485 *Syntax*:
486 ----------------------------
487 # config directive
488 mode [--pango_markup] <name>
489
490 # command
491 mode <name>
492 ----------------------------
493
494 *Example*:
495 ------------------------------------------------------------------------
496 # Press $mod+o followed by either f, t, Escape or Return to launch firefox,
497 # thunderbird or return to the default mode, respectively.
498 set $mode_launcher Launch: [f]irefox [t]hunderbird
499 bindsym $mod+o mode "$mode_launcher"
500
501 mode "$mode_launcher" {
502     bindsym f exec firefox
503     bindsym t exec thunderbird
504
505     bindsym Escape mode "default"
506     bindsym Return mode "default"
507 }
508 ------------------------------------------------------------------------
509
510 [[floating_modifier]]
511 === The floating modifier
512
513 To move floating windows with your mouse, you can either grab their titlebar
514 or configure the so-called floating modifier which you can then press and
515 click anywhere in the window itself to move it. The most common setup is to
516 use the same key you use for managing windows (Mod1 for example). Then
517 you can press Mod1, click into a window using your left mouse button, and drag
518 it to the position you want.
519
520 When holding the floating modifier, you can resize a floating window by
521 pressing the right mouse button on it and moving around while holding it. If
522 you hold the shift button as well, the resize will be proportional (the aspect
523 ratio will be preserved).
524
525 *Syntax*:
526 --------------------------------
527 floating_modifier <Modifier>
528 --------------------------------
529
530 *Example*:
531 --------------------------------
532 floating_modifier Mod1
533 --------------------------------
534
535 === Constraining floating window size
536
537 The maximum and minimum dimensions of floating windows can be specified. If
538 either dimension of +floating_maximum_size+ is specified as -1, that dimension
539 will be unconstrained with respect to its maximum value. If either dimension of
540 +floating_maximum_size+ is undefined, or specified as 0, i3 will use a default
541 value to constrain the maximum size. +floating_minimum_size+ is treated in a
542 manner analogous to +floating_maximum_size+.
543
544 *Syntax*:
545 ----------------------------------------
546 floating_minimum_size <width> x <height>
547 floating_maximum_size <width> x <height>
548 ----------------------------------------
549
550 *Example*:
551 --------------------------------------
552 floating_minimum_size 75 x 50
553 floating_maximum_size -1 x -1
554 --------------------------------------
555
556 === Orientation for new workspaces
557
558 New workspaces get a reasonable default orientation: Wide-screen monitors
559 (anything wider than high) get horizontal orientation, rotated monitors
560 (anything higher than wide) get vertical orientation.
561
562 With the +default_orientation+ configuration directive, you can override that
563 behavior.
564
565 *Syntax*:
566 --------------------------------------------
567 default_orientation horizontal|vertical|auto
568 --------------------------------------------
569
570 *Example*:
571 ----------------------------
572 default_orientation vertical
573 ----------------------------
574
575 === Layout mode for new containers
576
577 This option determines in which mode new containers on workspace level will
578 start.
579
580 *Syntax*:
581 ---------------------------------------------
582 workspace_layout default|stacking|tabbed
583 ---------------------------------------------
584
585 *Example*:
586 ---------------------
587 workspace_layout tabbed
588 ---------------------
589
590 === Window title alignment
591
592 This option determines the window title's text alignment.
593 Default is +left+
594
595 *Syntax*:
596 ---------------------------------------------
597 title_align left|center|right
598 ---------------------------------------------
599
600 === Default border style for new windows
601
602 This option determines which border style new windows will have. The default is
603 +normal+. Note that default_floating_border applies only to windows which are starting out as
604 floating windows, e.g., dialog windows, but not windows that are floated later on.
605
606 Setting border style to +pixel+ eliminates title bars. The border style +normal+ allows you to
607 adjust edge border width while keeping your title bar.
608
609 *Syntax*:
610 ---------------------------------------------
611 default_border normal|none|pixel
612 default_border normal|pixel <px>
613 default_floating_border normal|none|pixel
614 default_floating_border normal|pixel <px>
615 ---------------------------------------------
616
617 Please note that +new_window+ and +new_float+ have been deprecated in favor of the above options
618 and will be removed in a future release. We strongly recommend using the new options instead.
619
620 *Example*:
621 ---------------------
622 default_border pixel
623 ---------------------
624
625 The "normal" and "pixel" border styles support an optional border width in
626 pixels:
627
628 *Example*:
629 ---------------------
630 # The same as default_border none
631 default_border pixel 0
632
633 # A 3 px border
634 default_border pixel 3
635 ---------------------
636
637
638 [[_hiding_vertical_borders]]
639 === Hiding borders adjacent to the screen edges
640
641 You can hide container borders adjacent to the screen edges using
642 +hide_edge_borders+. This is useful if you are using scrollbars, or do not want
643 to waste even two pixels in displayspace. The "smart" setting hides borders on
644 workspaces with only one window visible, but keeps them on workspaces with
645 multiple windows visible. Default is none.
646
647 *Syntax*:
648 -----------------------------------------------
649 hide_edge_borders none|vertical|horizontal|both|smart
650 -----------------------------------------------
651
652 *Example*:
653 ----------------------
654 hide_edge_borders vertical
655 ----------------------
656
657 [[for_window]]
658 === Arbitrary commands for specific windows (for_window)
659
660 With the +for_window+ command, you can let i3 execute any command when it
661 encounters a specific window. This can be used to set windows to floating or to
662 change their border style, for example.
663
664 *Syntax*:
665 -------------------------------
666 for_window <criteria> <command>
667 -------------------------------
668
669 *Examples*:
670 ------------------------------------------------
671 # enable floating mode for all XTerm windows
672 for_window [class="XTerm"] floating enable
673
674 # Make all urxvts use a 1-pixel border:
675 for_window [class="urxvt"] border pixel 1
676
677 # A less useful, but rather funny example:
678 # makes the window floating as soon as I change
679 # directory to ~/work
680 for_window [title="x200: ~/work"] floating enable
681 ------------------------------------------------
682
683 The valid criteria are the same as those for commands, see <<command_criteria>>. Only config
684 directives with a command equivalent can be executed at runtime, see <<list_of_commands>>.
685
686 [[no_focus]]
687 === Don't focus window upon opening
688
689 When a new window appears, it will be focused. The +no_focus+ directive allows preventing
690 this from happening and must be used in combination with <<command_criteria>>.
691
692 Note that this does not apply to all cases, e.g., when feeding data into a running application
693 causing it to request being focused. To configure the behavior in such cases, refer to
694 <<focus_on_window_activation>>.
695
696 +no_focus+ will also be ignored for the first window on a workspace as there shouldn't be
697 a reason to not focus the window in this case. This allows for better usability in
698 combination with +workspace_layout+.
699
700 *Syntax*:
701 -------------------
702 no_focus <criteria>
703 -------------------
704
705 *Example*:
706 -------------------------------
707 no_focus [window_role="pop-up"]
708 -------------------------------
709
710 [[variables]]
711 === Variables
712
713 As you learned in the section about keyboard bindings, you will have
714 to configure lots of bindings containing modifier keys. If you want to save
715 yourself some typing and be able to change the modifier you use later,
716 variables can be handy.
717
718 *Syntax*:
719 -------------------
720 set $<name> <value>
721 -------------------
722
723 *Example*:
724 ------------------------
725 set $m Mod1
726 bindsym $m+Shift+r restart
727 ------------------------
728
729 Variables are directly replaced in the file when parsing. Variables expansion
730 is not recursive so it is not possible to define a variable with a value
731 containing another variable. There is no fancy handling and there are
732 absolutely no plans to change this. If you need a more dynamic configuration
733 you should create a little script which generates a configuration file and run
734 it before starting i3 (for example in your +~/.xsession+ file).
735
736 Also see <<xresources>> to learn how to create variables based on resources
737 loaded from the X resource database.
738
739 [[xresources]]
740 === X resources
741
742 <<variables>> can also be created using a value configured in the X resource
743 database. This is useful, for example, to avoid configuring color values within
744 the i3 configuration. Instead, the values can be configured, once, in the X
745 resource database to achieve an easily maintainable, consistent color theme
746 across many X applications.
747
748 Defining a resource will load this resource from the resource database and
749 assign its value to the specified variable. This is done verbatim and the value
750 must therefore be in the format that i3 uses. A fallback must be specified in
751 case the resource cannot be loaded from the database.
752
753 *Syntax*:
754 ----------------------------------------------------
755 set_from_resource $<name> <resource_name> <fallback>
756 ----------------------------------------------------
757
758 *Example*:
759 ----------------------------------------------------------------------------
760 # The ~/.Xresources should contain a line such as
761 #     *color0: #121212
762 # and must be loaded properly, e.g., by using
763 #     xrdb ~/.Xresources
764 # This value is picked up on by other applications (e.g., the URxvt terminal
765 # emulator) and can be used in i3 like this:
766 set_from_resource $black i3wm.color0 #000000
767 ----------------------------------------------------------------------------
768
769 [[assign_workspace]]
770 === Automatically putting clients on specific workspaces
771
772 To automatically make a specific window show up on a specific workspace, you
773 can use an *assignment*. You can match windows by using any criteria,
774 see <<command_criteria>>. The difference between +assign+ and
775 +for_window <criteria> move to workspace+ is that the former will only be
776 executed when the application maps the window (mapping means actually displaying
777 it on the screen) but the latter will be executed whenever a window changes its
778 properties to something that matches the specified criteria.
779
780 Thus, it is recommended that you match on window classes (and instances, when
781 appropriate) instead of window titles whenever possible because some
782 applications first create their window, and then worry about setting the correct
783 title. Firefox with Vimperator comes to mind. The window starts up being named
784 Firefox, and only when Vimperator is loaded does the title change. As i3 will
785 get the title as soon as the application maps the window, you’d need to have to
786 match on 'Firefox' in this case.
787 Another known issue is with Spotify, which doesn't set the class hints when
788 mapping the window, meaning you'll have to use a +for_window+ rule to assign
789 Spotify to a specific workspace.
790 Finally, using +assign [tiling]+ and +assign [floating]+ is not supported.
791
792 You can also assign a window to show up on a specific output. You can use RandR
793 names such as +VGA1+ or names relative to the output with the currently focused
794 workspace such as +left+ and +down+.
795
796 Assignments are processed by i3 in the order in which they appear in the config
797 file. The first one which matches the window wins and later assignments are not
798 considered.
799
800 *Syntax*:
801 ------------------------------------------------------------
802 assign <criteria> [→] [workspace] [number] <workspace>
803 assign <criteria> [→] output left|right|up|down|primary|<output>
804 ------------------------------------------------------------
805
806 *Examples*:
807 ----------------------
808 # Assign URxvt terminals to workspace 2
809 assign [class="URxvt"] 2
810
811 # Same thing, but more precise (exact match instead of substring)
812 assign [class="^URxvt$"] 2
813
814 # Same thing, but with a beautiful arrow :)
815 assign [class="^URxvt$"] → 2
816
817 # Assignment to a named workspace
818 assign [class="^URxvt$"] → work
819
820 # Assign to the workspace with number 2, regardless of name
821 assign [class="^URxvt$"] → number 2
822
823 # You can also specify a number + name. If the workspace with number 2 exists,
824 # assign will skip the text part.
825 assign [class="^URxvt$"] → number "2: work"
826
827 # Start urxvt -name irssi
828 assign [class="^URxvt$" instance="^irssi$"] → 3
829
830 # Assign urxvt to the output right of the current one
831 assign [class="^URxvt$"] → output right
832
833 # Assign urxvt to the primary output
834 assign [class="^URxvt$"] → output primary
835 ----------------------
836
837 Note that you might not have a primary output configured yet. To do so, run:
838 -------------------------
839 xrandr --output <output> --primary
840 -------------------------
841
842 Also, the arrow is not required, it just looks good :-). If you decide to
843 use it, it has to be a UTF-8 encoded arrow, not `->` or something like that.
844
845 To get the class and instance, you can use +xprop+. After clicking on the
846 window, you will see the following output:
847
848 *xprop*:
849 -----------------------------------
850 WM_CLASS(STRING) = "irssi", "URxvt"
851 -----------------------------------
852
853 The first part of the WM_CLASS is the instance ("irssi" in this example), the
854 second part is the class ("URxvt" in this example).
855
856 Should you have any problems with assignments, make sure to check the i3
857 logfile first (see https://i3wm.org/docs/debugging.html). It includes more
858 details about the matching process and the window’s actual class, instance and
859 title when starting up.
860
861 Note that if you want to start an application just once on a specific
862 workspace, but you don’t want to assign all instances of it permanently, you
863 can make use of i3’s startup-notification support (see <<exec>>) in your config
864 file in the following way:
865
866 *Start iceweasel on workspace 3 (once)*:
867 -------------------------------------------------------------------------------
868 # Start iceweasel on workspace 3, then switch back to workspace 1
869 # (Being a command-line utility, i3-msg does not support startup notifications,
870 #  hence the exec --no-startup-id.)
871 # (Starting iceweasel with i3’s exec command is important in order to make i3
872 #  create a startup notification context, without which the iceweasel window(s)
873 #  cannot be matched onto the workspace on which the command was started.)
874 exec --no-startup-id i3-msg 'workspace 3; exec iceweasel; workspace 1'
875 -------------------------------------------------------------------------------
876
877 === Automatically starting applications on i3 startup
878
879 By using the +exec+ keyword outside a keybinding, you can configure
880 which commands will be performed by i3 on initial startup. +exec+
881 commands will not run when restarting i3, if you need a command to run
882 also when restarting i3 you should use the +exec_always+
883 keyword. These commands will be run in order.
884
885 See <<command_chaining>> for details on the special meaning of +;+ (semicolon)
886 and +,+ (comma): they chain commands together in i3, so you need to use quoted
887 strings (as shown in <<exec_quoting>>) if they appear in your command.
888
889 *Syntax*:
890 ---------------------------------------
891 exec [--no-startup-id] <command>
892 exec_always [--no-startup-id] <command>
893 ---------------------------------------
894
895 *Examples*:
896 --------------------------------
897 exec chromium
898 exec_always ~/my_script.sh
899
900 # Execute the terminal emulator urxvt, which is not yet startup-notification aware.
901 exec --no-startup-id urxvt
902 --------------------------------
903
904 The flag --no-startup-id is explained in <<exec>>.
905
906 [[workspace_screen]]
907 === Automatically putting workspaces on specific screens
908
909 If you assign clients to workspaces, it might be handy to put the
910 workspaces on specific screens. Also, the assignment of workspaces to screens
911 will determine which workspace i3 uses for a new screen when adding screens
912 or when starting (e.g., by default it will use 1 for the first screen, 2 for
913 the second screen and so on).
914
915 *Syntax*:
916 -------------------------------------
917 workspace <workspace> output <output1> [output2]…
918 -------------------------------------
919
920 The 'output' is the name of the RandR output you attach your screen to. On a
921 laptop, you might have VGA1 and LVDS1 as output names. You can see the
922 available outputs by running +xrandr --current+.
923
924 If your X server supports RandR 1.5 or newer, i3 will use RandR monitor objects
925 instead of output objects. Run +xrandr --listmonitors+ to see a list. Usually,
926 a monitor object contains exactly one output, and has the same name as the
927 output; but should that not be the case, you may specify the name of either the
928 monitor or the output in i3's configuration. For example, the Dell UP2414Q uses
929 two scalers internally, so its output names might be “DP1” and “DP2”, but the
930 monitor name is “Dell UP2414Q”.
931
932 (Note that even if you specify the name of an output which doesn't span the
933 entire monitor, i3 will still use the entire area of the containing monitor
934 rather than that of just the output's.)
935
936 You can specify multiple outputs. The first available will be used.
937
938 If you use named workspaces, they must be quoted:
939
940 *Examples*:
941 ---------------------------
942 workspace 1 output LVDS1
943 workspace 2 output primary
944 workspace 5 output VGA1 LVDS1
945 workspace "2: vim" output VGA1
946 ---------------------------
947
948 === Changing colors
949
950 You can change all colors which i3 uses to draw the window decorations.
951
952 *Syntax*:
953 --------------------------------------------------------------------
954 <colorclass> <border> <background> <text> <indicator> <child_border>
955 --------------------------------------------------------------------
956
957 Where colorclass can be one of:
958
959 client.focused::
960         A client which currently has the focus.
961 client.focused_inactive::
962         A client which is the focused one of its container, but it does not have
963         the focus at the moment.
964 client.unfocused::
965         A client which is not the focused one of its container.
966 client.urgent::
967         A client which has its urgency hint activated.
968 client.placeholder::
969         Background and text color are used to draw placeholder window contents
970         (when restoring layouts). Border and indicator are ignored.
971 client.background::
972         Background color which will be used to paint the background of the
973         client window on top of which the client will be rendered. Only clients
974         which do not cover the whole area of this window expose the color. Note
975         that this colorclass only takes a single color.
976
977 Colors are in HTML hex format (#rrggbb), see the following example:
978
979 *Examples (default colors)*:
980 ----------------------------------------------------------------------
981 # class                 border  backgr. text    indicator child_border
982 client.focused          #4c7899 #285577 #ffffff #2e9ef4   #285577
983 client.focused_inactive #333333 #5f676a #ffffff #484e50   #5f676a
984 client.unfocused        #333333 #222222 #888888 #292d2e   #222222
985 client.urgent           #2f343a #900000 #ffffff #900000   #900000
986 client.placeholder      #000000 #0c0c0c #ffffff #000000   #0c0c0c
987
988 client.background       #ffffff
989 ----------------------------------------------------------------------
990
991 Note that for the window decorations, the color around the child window is the
992 "child_border", and "border" color is only the two thin lines around the
993 titlebar.
994
995 The indicator color is used for indicating where a new window will be opened.
996 For horizontal split containers, the right border will be painted in indicator
997 color, for vertical split containers, the bottom border. This only applies to
998 single windows within a split container, which are otherwise indistinguishable
999 from single windows outside of a split container.
1000
1001 === Interprocess communication
1002
1003 i3 uses Unix sockets to provide an IPC interface. This allows third-party
1004 programs to get information from i3, such as the current workspaces
1005 (to display a workspace bar), and to control i3.
1006
1007 The IPC socket is enabled by default and will be created in
1008 +/tmp/i3-%u.XXXXXX/ipc-socket.%p+ where +%u+ is your UNIX username, +%p+ is
1009 the PID of i3 and XXXXXX is a string of random characters from the portable
1010 filename character set (see mkdtemp(3)).
1011
1012 You can override the default path through the environment-variable +I3SOCK+ or
1013 by specifying the +ipc-socket+ directive. This is discouraged, though, since i3
1014 does the right thing by default. If you decide to change it, it is strongly
1015 recommended to set this to a location in your home directory so that no other
1016 user can create that directory.
1017
1018 *Examples*:
1019 ----------------------------
1020 ipc-socket ~/.i3/i3-ipc.sock
1021 ----------------------------
1022
1023 You can then use the +i3-msg+ application to perform any command listed in
1024 <<list_of_commands>>.
1025
1026 === Focus follows mouse
1027
1028 By default, window focus follows your mouse movements as the mouse crosses
1029 window borders. However, if you have a setup where your mouse usually is in your
1030 way (like a touchpad on your laptop which you do not want to disable
1031 completely), you might want to disable 'focus follows mouse' and control focus
1032 only by using your keyboard.  The mouse will still be useful inside the
1033 currently active window (for example to click on links in your browser window).
1034
1035 *Syntax*:
1036 --------------------------
1037 focus_follows_mouse yes|no
1038 --------------------------
1039
1040 *Example*:
1041 ----------------------
1042 focus_follows_mouse no
1043 ----------------------
1044
1045 === Mouse warping
1046
1047 By default, when switching focus to a window on a different output (e.g.
1048 focusing a window on workspace 3 on output VGA-1, coming from workspace 2 on
1049 LVDS-1), the mouse cursor is warped to the center of that window.
1050
1051 With the +mouse_warping+ option, you can control when the mouse cursor should
1052 be warped. +none+ disables warping entirely, whereas +output+ is the default
1053 behavior described above.
1054
1055 *Syntax*:
1056 -------------------------
1057 mouse_warping output|none
1058 -------------------------
1059
1060 *Example*:
1061 ------------------
1062 mouse_warping none
1063 ------------------
1064
1065 === Popups during fullscreen mode
1066
1067 When you are in fullscreen mode, some applications still open popup windows
1068 (take Xpdf for example). This is because these applications may not be aware
1069 that they are in fullscreen mode (they do not check the corresponding hint).
1070 There are three things which are possible to do in this situation:
1071
1072 1. Display the popup if it belongs to the fullscreen application only. This is
1073    the default and should be reasonable behavior for most users.
1074 2. Just ignore the popup (don’t map it). This won’t interrupt you while you are
1075    in fullscreen. However, some apps might react badly to this (deadlock until
1076    you go out of fullscreen).
1077 3. Leave fullscreen mode.
1078
1079 *Syntax*:
1080 -----------------------------------------------------
1081 popup_during_fullscreen smart|ignore|leave_fullscreen
1082 -----------------------------------------------------
1083
1084 *Example*:
1085 ------------------------------
1086 popup_during_fullscreen smart
1087 ------------------------------
1088
1089 === Focus wrapping
1090
1091 By default, when in a container with several windows or child containers, the
1092 opposite window will be focused when trying to move the focus over the edge of
1093 a container (and there are no other containers in that direction) -- the focus
1094 wraps.
1095
1096 If desired, you can disable this behavior by setting the +focus_wrapping+
1097 configuration directive to the value +no+.
1098
1099 When enabled, focus wrapping does not occur by default if there is another
1100 window or container in the specified direction, and focus will instead be set
1101 on that window or container. This is the default behavior so you can navigate
1102 to all your windows without having to use +focus parent+.
1103
1104 If you want the focus to *always* wrap and you are aware of using +focus
1105 parent+ to switch to different containers, you can instead set +focus_wrapping+
1106 to the value +force+.
1107
1108 *Syntax*:
1109 ---------------------------
1110 focus_wrapping yes|no|force
1111
1112 # Legacy syntax, equivalent to "focus_wrapping force"
1113 force_focus_wrapping yes
1114 ---------------------------
1115
1116 *Examples*:
1117 -----------------
1118 # Disable focus wrapping
1119 focus_wrapping no
1120
1121 # Force focus wrapping
1122 focus_wrapping force
1123 -----------------
1124
1125 === Forcing Xinerama
1126
1127 As explained in-depth in <https://i3wm.org/docs/multi-monitor.html>, some X11
1128 video drivers (especially the nVidia binary driver) only provide support for
1129 Xinerama instead of RandR. In such a situation, i3 must be told to use the
1130 inferior Xinerama API explicitly and therefore don’t provide support for
1131 reconfiguring your screens on the fly (they are read only once on startup and
1132 that’s it).
1133
1134 For people who cannot modify their +~/.xsession+ to add the
1135 +--force-xinerama+ commandline parameter, a configuration option is provided:
1136
1137 *Syntax*:
1138 ---------------------
1139 force_xinerama yes|no
1140 ---------------------
1141
1142 *Example*:
1143 ------------------
1144 force_xinerama yes
1145 ------------------
1146
1147 Also note that your output names are not descriptive (like +HDMI1+) when using
1148 Xinerama, instead they are counted up, starting at 0: +xinerama-0+, +xinerama-1+, …
1149
1150 [[workspace_auto_back_and_forth]]
1151 === Automatic back-and-forth when switching to the current workspace
1152
1153 This configuration directive enables automatic +workspace back_and_forth+ (see
1154 <<back_and_forth>>) when switching to the workspace that is currently focused.
1155
1156 For instance: Assume you are on workspace "1: www" and switch to "2: IM" using
1157 mod+2 because somebody sent you a message. You don’t need to remember where you
1158 came from now, you can just press $mod+2 again to switch back to "1: www".
1159
1160 *Syntax*:
1161 ------------------------------------
1162 workspace_auto_back_and_forth yes|no
1163 ------------------------------------
1164
1165 *Example*:
1166 ---------------------------------
1167 workspace_auto_back_and_forth yes
1168 ---------------------------------
1169
1170 === Delaying urgency hint reset on workspace change
1171
1172 If an application on another workspace sets an urgency hint, switching to this
1173 workspace may lead to immediate focus of the application, which also means the
1174 window decoration color would be immediately reset to +client.focused+. This
1175 may make it unnecessarily hard to tell which window originally raised the
1176 event.
1177
1178 In order to prevent this, you can tell i3 to delay resetting the urgency state
1179 by a certain time using the +force_display_urgency_hint+ directive. Setting the
1180 value to 0 disables this feature.
1181
1182 The default is 500ms.
1183
1184 *Syntax*:
1185 ---------------------------------------
1186 force_display_urgency_hint <timeout> ms
1187 ---------------------------------------
1188
1189 *Example*:
1190 ---------------------------------
1191 force_display_urgency_hint 500 ms
1192 ---------------------------------
1193
1194 [[focus_on_window_activation]]
1195 === Focus on window activation
1196
1197 If a window is activated, e.g., via +google-chrome www.google.com+, it may request
1198 to take focus. Since this may not preferable, different reactions can be configured.
1199
1200 Note that this may not affect windows that are being opened. To prevent new windows
1201 from being focused, see <<no_focus>>.
1202
1203 *Syntax*:
1204 --------------------------------------------------
1205 focus_on_window_activation smart|urgent|focus|none
1206 --------------------------------------------------
1207
1208 The different modes will act as follows:
1209
1210 smart::
1211     This is the default behavior. If the window requesting focus is on an active
1212     workspace, it will receive the focus. Otherwise, the urgency hint will be set.
1213 urgent::
1214     The window will always be marked urgent, but the focus will not be stolen.
1215 focus::
1216     The window will always be focused and not be marked urgent.
1217 none::
1218     The window will neither be focused, nor be marked urgent.
1219
1220 [[show_marks]]
1221 === Drawing marks on window decoration
1222
1223 If activated, marks (see <<vim_like_marks>>) on windows are drawn in their window
1224 decoration. However, any mark starting with an underscore in its name (+_+) will
1225 not be drawn even if this option is activated.
1226
1227 The default for this option is +yes+.
1228
1229 *Syntax*:
1230 -----------------
1231 show_marks yes|no
1232 -----------------
1233
1234 *Example*:
1235 --------------
1236 show_marks yes
1237 --------------
1238
1239 [[line_continuation]]
1240 === Line continuation
1241
1242 Config files support line continuation, meaning when you end a line in a
1243 backslash character (`\`), the line-break will be ignored by the parser. This
1244 feature can be used to create more readable configuration files.
1245 Commented lines are not continued.
1246
1247 *Examples*:
1248 -------------------
1249 bindsym Mod1+f \
1250 fullscreen toggle
1251
1252 # this line is not continued \
1253 bindsym Mod1+F fullscreen toggle
1254 -------------------
1255
1256 == Configuring i3bar
1257
1258 The bar at the bottom of your monitor is drawn by a separate process called
1259 i3bar. Having this part of "the i3 user interface" in a separate process has
1260 several advantages:
1261
1262 1. It is a modular approach. If you don’t need a workspace bar at all, or if
1263    you prefer a different one (dzen2, xmobar, maybe even gnome-panel?), you can
1264    just remove the i3bar configuration and start your favorite bar instead.
1265 2. It follows the UNIX philosophy of "Make each program do one thing well".
1266    While i3 manages your windows well, i3bar is good at displaying a bar on
1267    each monitor (unless you configure it otherwise).
1268 3. It leads to two separate, clean codebases. If you want to understand i3, you
1269    don’t need to bother with the details of i3bar and vice versa.
1270
1271 That said, i3bar is configured in the same configuration file as i3. This is
1272 because it is tightly coupled with i3 (in contrary to i3lock or i3status which
1273 are useful for people using other window managers). Therefore, it makes no
1274 sense to use a different configuration place when we already have a good
1275 configuration infrastructure in place.
1276
1277 Configuring your workspace bar starts with opening a +bar+ block. You can have
1278 multiple bar blocks to use different settings for different outputs (monitors):
1279
1280 *Example*:
1281 ---------------------------
1282 bar {
1283     status_command i3status
1284 }
1285 ---------------------------
1286
1287 === i3bar command
1288
1289 By default i3 will just pass +i3bar+ and let your shell handle the execution,
1290 searching your +$PATH+ for a correct version.
1291 If you have a different +i3bar+ somewhere or the binary is not in your +$PATH+ you can
1292 tell i3 what to execute.
1293
1294 The specified command will be passed to +sh -c+, so you can use globbing and
1295 have to have correct quoting etc.
1296
1297 *Syntax*:
1298 -----------------------
1299 i3bar_command <command>
1300 -----------------------
1301
1302 *Example*:
1303 -------------------------------------------------
1304 bar {
1305     i3bar_command /home/user/bin/i3bar
1306 }
1307 -------------------------------------------------
1308
1309 [[status_command]]
1310 === Statusline command
1311
1312 i3bar can run a program and display every line of its +stdout+ output on the
1313 right hand side of the bar. This is useful to display system information like
1314 your current IP address, battery status or date/time.
1315
1316 The specified command will be passed to +sh -c+, so you can use globbing and
1317 have to have correct quoting etc. Note that for signal handling, depending on
1318 your shell (users of dash(1) are known to be affected), you have to use the
1319 shell’s exec command so that signals are passed to your program, not to the
1320 shell.
1321
1322 *Syntax*:
1323 ------------------------
1324 status_command <command>
1325 ------------------------
1326
1327 *Example*:
1328 -------------------------------------------------
1329 bar {
1330     status_command i3status --config ~/.i3status.conf
1331
1332     # For dash(1) users who want signal handling to work:
1333     status_command exec ~/.bin/my_status_command
1334 }
1335 -------------------------------------------------
1336
1337 === Display mode
1338
1339 You can either have i3bar be visible permanently at one edge of the screen
1340 (+dock+ mode) or make it show up when you press your modifier key (+hide+ mode).
1341 It is also possible to force i3bar to always stay hidden (+invisible+
1342 mode). The modifier key can be configured using the +modifier+ option.
1343
1344 The mode option can be changed during runtime through the +bar mode+ command.
1345 On reload the mode will be reverted to its configured value.
1346
1347 The hide mode maximizes screen space that can be used for actual windows. Also,
1348 i3bar sends the +SIGSTOP+ and +SIGCONT+ signals to the statusline process to
1349 save battery power.
1350
1351 Invisible mode allows to permanently maximize screen space, as the bar is never
1352 shown. Thus, you can configure i3bar to not disturb you by popping up because
1353 of an urgency hint or because the modifier key is pressed.
1354
1355 In order to control whether i3bar is hidden or shown in hide mode, there exists
1356 the hidden_state option, which has no effect in dock mode or invisible mode. It
1357 indicates the current hidden_state of the bar: (1) The bar acts like in normal
1358 hide mode, it is hidden and is only unhidden in case of urgency hints or by
1359 pressing the modifier key (+hide+ state), or (2) it is drawn on top of the
1360 currently visible workspace (+show+ state).
1361
1362 Like the mode, the hidden_state can also be controlled through i3, this can be
1363 done by using the +bar hidden_state+ command.
1364
1365 The default mode is dock mode; in hide mode, the default modifier is Mod4 (usually
1366 the windows key). The default value for the hidden_state is hide.
1367
1368 *Syntax*:
1369 -------------------------
1370 mode dock|hide|invisible
1371 hidden_state hide|show
1372 modifier <Modifier>|none
1373 ------------------------
1374
1375 *Example*:
1376 ----------------
1377 bar {
1378     mode hide
1379     hidden_state hide
1380     modifier Mod1
1381 }
1382 ----------------
1383
1384 Available modifiers are Mod1-Mod5, Shift, Control (see +xmodmap(1)+). You can
1385 also use "none" if you don't want any modifier to trigger this behavior.
1386
1387 === Mouse button commands
1388
1389 Specifies a command to run when a button was pressed on i3bar to override the
1390 default behavior. This is useful, e.g., for disabling the scroll wheel action
1391 or running scripts that implement custom behavior for these buttons.
1392
1393 A button is always named +button<n>+, where 1 to 5 are default buttons as follows and higher
1394 numbers can be special buttons on devices offering more buttons:
1395
1396 button1::
1397     Left mouse button.
1398 button2::
1399     Middle mouse button.
1400 button3::
1401     Right mouse button.
1402 button4::
1403     Scroll wheel up.
1404 button5::
1405     Scroll wheel down.
1406
1407 Please note that the old +wheel_up_cmd+ and +wheel_down_cmd+ commands are deprecated
1408 and will be removed in a future release. We strongly recommend using the more general
1409 +bindsym+ with +button4+ and +button5+ instead.
1410
1411 *Syntax*:
1412 ----------------------------
1413 bindsym [--release] button<n> <command>
1414 ----------------------------
1415
1416 *Example*:
1417 ---------------------------------------------------------
1418 bar {
1419     # disable clicking on workspace buttons
1420     bindsym button1 nop
1421     # Take a screenshot by right clicking on the bar
1422     bindsym --release button3 exec --no-startup-id import /tmp/latest-screenshot.png
1423     # execute custom script when scrolling downwards
1424     bindsym button5 exec ~/.i3/scripts/custom_wheel_down
1425 }
1426 ---------------------------------------------------------
1427
1428 === Bar ID
1429
1430 Specifies the bar ID for the configured bar instance. If this option is missing,
1431 the ID is set to 'bar-x', where x corresponds to the position of the embedding
1432 bar block in the config file ('bar-0', 'bar-1', ...).
1433
1434 *Syntax*:
1435 ---------------------
1436 id <bar_id>
1437 ---------------------
1438
1439 *Example*:
1440 ---------------------
1441 bar {
1442     id bar-1
1443 }
1444 ---------------------
1445
1446 [[i3bar_position]]
1447 === Position
1448
1449 This option determines in which edge of the screen i3bar should show up.
1450
1451 The default is bottom.
1452
1453 *Syntax*:
1454 -------------------
1455 position top|bottom
1456 -------------------
1457
1458 *Example*:
1459 ---------------------
1460 bar {
1461     position top
1462 }
1463 ---------------------
1464
1465 === Output(s)
1466
1467 You can restrict i3bar to one or more outputs (monitors). The default is to
1468 handle all outputs. Restricting the outputs is useful for using different
1469 options for different outputs by using multiple 'bar' blocks.
1470
1471 To make a particular i3bar instance handle multiple outputs, specify the output
1472 directive multiple times.
1473
1474 *Syntax*:
1475 ---------------
1476 output primary|<output>
1477 ---------------
1478
1479 *Example*:
1480 -------------------------------
1481 # big monitor: everything
1482 bar {
1483     # The display is connected either via HDMI or via DisplayPort
1484     output HDMI2
1485     output DP2
1486     status_command i3status
1487 }
1488
1489 # laptop monitor: bright colors and i3status with less modules.
1490 bar {
1491     output LVDS1
1492     status_command i3status --config ~/.i3status-small.conf
1493     colors {
1494         background #000000
1495         statusline #ffffff
1496     }
1497 }
1498
1499 # show bar on the primary monitor and on HDMI2
1500 bar {
1501     output primary
1502     output HDMI2
1503     status_command i3status
1504 }
1505
1506 -------------------------------
1507 Note that you might not have a primary output configured yet. To do so, run:
1508 -------------------------
1509 xrandr --output <output> --primary
1510 -------------------------
1511
1512 === Tray output
1513
1514 i3bar by default provides a system tray area where programs such as
1515 NetworkManager, VLC, Pidgin, etc. can place little icons.
1516
1517 You can configure on which output (monitor) the icons should be displayed or
1518 you can turn off the functionality entirely.
1519
1520 You can use multiple +tray_output+ directives in your config to specify a list
1521 of outputs on which you want the tray to appear. The first available output in
1522 that list as defined by the order of the directives will be used for the tray
1523 output.
1524
1525 *Syntax*:
1526 ---------------------------------
1527 tray_output none|primary|<output>
1528 ---------------------------------
1529
1530 *Example*:
1531 -------------------------
1532 # disable system tray
1533 bar {
1534     tray_output none
1535 }
1536
1537 # show tray icons on the primary monitor
1538 bar {
1539     tray_output primary
1540 }
1541
1542 # show tray icons on the big monitor
1543 bar {
1544     tray_output HDMI2
1545 }
1546 -------------------------
1547
1548 Note that you might not have a primary output configured yet. To do so, run:
1549 -------------------------
1550 xrandr --output <output> --primary
1551 -------------------------
1552
1553 Note that when you use multiple bar configuration blocks, either specify
1554 `tray_output primary` in all of them or explicitly specify `tray_output none`
1555 in bars which should not display the tray, otherwise the different instances
1556 might race each other in trying to display tray icons.
1557
1558 === Tray padding
1559
1560 The tray is shown on the right-hand side of the bar. By default, a padding of 2
1561 pixels is used for the upper, lower and right-hand side of the tray area and
1562 between the individual icons.
1563
1564 *Syntax*:
1565 -------------------------
1566 tray_padding <px> [px]
1567 -------------------------
1568
1569 *Example*:
1570 -------------------------
1571 # Obey Fitts's law
1572 tray_padding 0
1573 -------------------------
1574
1575 === Font
1576
1577 Specifies the font to be used in the bar. See <<fonts>>.
1578
1579 *Syntax*:
1580 ---------------------
1581 font <font>
1582 ---------------------
1583
1584 *Example*:
1585 --------------------------------------------------------------
1586 bar {
1587     font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
1588     font pango:DejaVu Sans Mono 10
1589 }
1590 --------------------------------------------------------------
1591
1592 === Custom separator symbol
1593
1594 Specifies a custom symbol to be used for the separator as opposed to the vertical,
1595 one pixel thick separator.
1596
1597 *Syntax*:
1598 -------------------------
1599 separator_symbol <symbol>
1600 -------------------------
1601
1602 *Example*:
1603 ------------------------
1604 bar {
1605     separator_symbol ":|:"
1606 }
1607 ------------------------
1608
1609 === Workspace buttons
1610
1611 Specifies whether workspace buttons should be shown or not. This is useful if
1612 you want to display a statusline-only bar containing additional information.
1613
1614 The default is to show workspace buttons.
1615
1616 *Syntax*:
1617 ------------------------
1618 workspace_buttons yes|no
1619 ------------------------
1620
1621 *Example*:
1622 ------------------------
1623 bar {
1624     workspace_buttons no
1625 }
1626 ------------------------
1627
1628 === Strip workspace numbers/name
1629
1630 Specifies whether workspace numbers should be displayed within the workspace
1631 buttons. This is useful if you want to have a named workspace that stays in
1632 order on the bar according to its number without displaying the number prefix.
1633
1634 When +strip_workspace_numbers+ is set to +yes+, any workspace that has a name of
1635 the form "[n][:][NAME]" will display only the name. You could use this, for
1636 instance, to display Roman numerals rather than digits by naming your
1637 workspaces to "1:I", "2:II", "3:III", "4:IV", ...
1638
1639 When +strip_workspace_name+ is set to +yes+, any workspace that has a name of
1640 the form "[n][:][NAME]" will display only the number.
1641
1642 The default is to display the full name within the workspace button. Be aware
1643 that the colon in the workspace name is optional, so `[n][NAME]` will also 
1644 have the the workspace name and number stripped correctly. 
1645
1646 *Syntax*:
1647 ------------------------------
1648 strip_workspace_numbers yes|no
1649 strip_workspace_name yes|no
1650 ------------------------------
1651
1652 *Example*:
1653 ----------------------------
1654 bar {
1655     strip_workspace_numbers yes
1656 }
1657 ----------------------------
1658
1659 === Binding Mode indicator
1660
1661 Specifies whether the current binding mode indicator should be shown or not.
1662 This is useful if you want to hide the workspace buttons but still be able
1663 to see the current binding mode indicator. See <<binding_modes>> to learn what
1664 modes are and how to use them.
1665
1666 The default is to show the mode indicator.
1667
1668 *Syntax*:
1669 -----------------------------
1670 binding_mode_indicator yes|no
1671 -----------------------------
1672
1673 *Example*:
1674 -----------------------------
1675 bar {
1676     binding_mode_indicator no
1677 }
1678 -----------------------------
1679
1680 === Colors
1681
1682 As with i3, colors are in HTML hex format (#rrggbb). The following colors can
1683 be configured at the moment:
1684
1685 background::
1686         Background color of the bar.
1687 statusline::
1688         Text color to be used for the statusline.
1689 separator::
1690         Text color to be used for the separator.
1691 focused_background::
1692         Background color of the bar on the currently focused monitor output. If
1693         not used, the color will be taken from +background+.
1694 focused_statusline::
1695         Text color to be used for the statusline on the currently focused
1696         monitor output. If not used, the color will be taken from +statusline+.
1697 focused_separator::
1698         Text color to be used for the separator on the currently focused
1699         monitor output. If not used, the color will be taken from +separator+.
1700 focused_workspace::
1701         Border, background and text color for a workspace button when the workspace
1702         has focus.
1703 active_workspace::
1704         Border, background and text color for a workspace button when the workspace
1705         is active (visible) on some output, but the focus is on another one.
1706         You can only tell this apart from the focused workspace when you are
1707         using multiple monitors.
1708 inactive_workspace::
1709         Border, background and text color for a workspace button when the workspace
1710         does not have focus and is not active (visible) on any output. This
1711         will be the case for most workspaces.
1712 urgent_workspace::
1713         Border, background and text color for a workspace button when the workspace
1714         contains a window with the urgency hint set.
1715 binding_mode::
1716         Border, background and text color for the binding mode indicator. If not used,
1717         the colors will be taken from +urgent_workspace+.
1718
1719 *Syntax*:
1720 ----------------------------------------
1721 colors {
1722     background <color>
1723     statusline <color>
1724     separator <color>
1725
1726     <colorclass> <border> <background> <text>
1727 }
1728 ----------------------------------------
1729
1730 *Example (default colors)*:
1731 --------------------------------------
1732 bar {
1733     colors {
1734         background #000000
1735         statusline #ffffff
1736         separator #666666
1737
1738         focused_workspace  #4c7899 #285577 #ffffff
1739         active_workspace   #333333 #5f676a #ffffff
1740         inactive_workspace #333333 #222222 #888888
1741         urgent_workspace   #2f343a #900000 #ffffff
1742         binding_mode       #2f343a #900000 #ffffff
1743     }
1744 }
1745 --------------------------------------
1746
1747 [[list_of_commands]]
1748 == List of commands
1749
1750 Commands are what you bind to specific keypresses. You can also issue commands
1751 at runtime without pressing a key by using the IPC interface. An easy way to
1752 do this is to use the +i3-msg+ utility:
1753
1754 *Example*:
1755 --------------------------
1756 # execute this on your shell to make the current container borderless
1757 i3-msg border none
1758 --------------------------
1759
1760 [[command_chaining]]
1761
1762 Commands can be chained by using +;+ (a semicolon). So, to move a window to a
1763 specific workspace and immediately switch to that workspace, you can configure
1764 the following keybinding:
1765
1766 *Example*:
1767 --------------------------------------------------------
1768 bindsym $mod+x move container to workspace 3; workspace 3
1769 --------------------------------------------------------
1770
1771 [[command_criteria]]
1772
1773 Furthermore, you can change the scope of a command - that is, which containers
1774 should be affected by that command, by using various criteria. The criteria
1775 are specified before any command in a pair of square brackets and are separated
1776 by space.
1777
1778 When using multiple commands, separate them by using a +,+ (a comma) instead of
1779 a semicolon. Criteria apply only until the next semicolon, so if you use a
1780 semicolon to separate commands, only the first one will be executed for the
1781 matched window(s).
1782
1783 *Example*:
1784 ------------------------------------
1785 # if you want to kill all windows which have the class Firefox, use:
1786 bindsym $mod+x [class="Firefox"] kill
1787
1788 # same thing, but case-insensitive
1789 bindsym $mod+x [class="(?i)firefox"] kill
1790
1791 # kill only the About dialog from Firefox
1792 bindsym $mod+x [class="Firefox" window_role="About"] kill
1793
1794 # enable floating mode and move container to workspace 4
1795 for_window [class="^evil-app$"] floating enable, move container to workspace 4
1796
1797 # move all floating windows to the scratchpad
1798 bindsym $mod+x [floating] move scratchpad
1799 ------------------------------------
1800
1801 The criteria which are currently implemented are:
1802
1803 class::
1804         Compares the window class (the second part of WM_CLASS). Use the
1805         special value +\_\_focused__+ to match all windows having the same window
1806         class as the currently focused window.
1807 instance::
1808         Compares the window instance (the first part of WM_CLASS). Use the
1809         special value +\_\_focused__+ to match all windows having the same window
1810         instance as the currently focused window.
1811 window_role::
1812         Compares the window role (WM_WINDOW_ROLE). Use the special value
1813         +\_\_focused__+ to match all windows having the same window role as the
1814         currently focused window.
1815 window_type::
1816         Compare the window type (_NET_WM_WINDOW_TYPE). Possible values are
1817         +normal+, +dialog+, +utility+, +toolbar+, +splash+, +menu+, +dropdown_menu+,
1818         +popup_menu+, +tooltip+ and +notification+.
1819 id::
1820         Compares the X11 window ID, which you can get via +xwininfo+ for example.
1821 title::
1822         Compares the X11 window title (\_NET_WM_NAME or WM_NAME as fallback).
1823         Use the special value +\_\_focused__+ to match all windows having the
1824         same window title as the currently focused window.
1825 urgent::
1826         Compares the urgent state of the window. Can be "latest" or "oldest".
1827         Matches the latest or oldest urgent window, respectively.
1828         (The following aliases are also available: newest, last, recent, first)
1829 workspace::
1830         Compares the workspace name of the workspace the window belongs to. Use
1831         the special value +\_\_focused__+ to match all windows in the currently
1832         focused workspace.
1833 con_mark::
1834         Compares the marks set for this container, see <<vim_like_marks>>. A
1835         match is made if any of the container's marks matches the specified
1836         mark.
1837 con_id::
1838         Compares the i3-internal container ID, which you can get via the IPC
1839         interface. Handy for scripting. Use the special value +\_\_focused__+
1840         to match only the currently focused window.
1841 floating::
1842         Only matches floating windows. This criterion requires no value.
1843 tiling::
1844         Only matches tiling windows. This criterion requires no value.
1845
1846 The criteria +class+, +instance+, +role+, +title+, +workspace+ and +mark+ are
1847 actually regular expressions (PCRE). See +pcresyntax(3)+ or +perldoc perlre+ for
1848 information on how to use them.
1849
1850 Note that config directives listed under <<configuring>> cannot be changed at runtime 
1851 unless they happen to have a command equivalent.
1852
1853 [[exec]]
1854 === Executing applications (exec)
1855
1856 What good is a window manager if you can’t actually start any applications?
1857 The exec command starts an application by passing the command you specify to a
1858 shell. This implies that you can use globbing (wildcards) and programs will be
1859 searched in your +$PATH+.
1860
1861 See <<command_chaining>> for details on the special meaning of +;+ (semicolon)
1862 and +,+ (comma): they chain commands together in i3, so you need to use quoted
1863 strings (as shown in <<exec_quoting>>) if they appear in your command.
1864
1865 *Syntax*:
1866 --------------------------------
1867 exec [--no-startup-id] <command>
1868 --------------------------------
1869
1870 *Example*:
1871 ------------------------------
1872 # Start the GIMP
1873 bindsym $mod+g exec gimp
1874
1875 # Start the terminal emulator urxvt which is not yet startup-notification-aware
1876 bindsym $mod+Return exec --no-startup-id urxvt
1877 ------------------------------
1878
1879 The +--no-startup-id+ parameter disables startup-notification support for this
1880 particular exec command. With startup-notification, i3 can make sure that a
1881 window appears on the workspace on which you used the exec command. Also, it
1882 will change the X11 cursor to +watch+ (a clock) while the application is
1883 launching. So, if an application is not startup-notification aware (most GTK
1884 and Qt using applications seem to be, though), you will end up with a watch
1885 cursor for 60 seconds.
1886
1887 [[exec_quoting]]
1888 If the command to be executed contains a +;+ (semicolon) and/or a +,+ (comma),
1889 the entire command must be quoted. For example, to have a keybinding for the
1890 shell command +notify-send Hello, i3+, you would add an entry to your
1891 configuration file like this:
1892
1893 *Example*:
1894 ------------------------------
1895 # Execute a command with a comma in it
1896 bindsym $mod+p exec "notify-send Hello, i3"
1897 ------------------------------
1898
1899 If however a command with a comma and/or semicolon itself requires quotes, you
1900 must escape the internal quotation marks with double backslashes, like this:
1901
1902 *Example*:
1903 ------------------------------
1904 # Execute a command with a comma, semicolon and internal quotes
1905 bindsym $mod+p exec "notify-send \\"Hello, i3; from $USER\\""
1906 ------------------------------
1907
1908 === Splitting containers
1909
1910 The split command makes the current window a split container. Split containers
1911 can contain multiple windows. Depending on the layout of the split container,
1912 new windows get placed to the right of the current one (splith) or new windows
1913 get placed below the current one (splitv).
1914
1915 If you apply this command to a split container with the same orientation,
1916 nothing will happen. If you use a different orientation, the split container’s
1917 orientation will be changed (if it does not have more than one window).
1918 The +toggle+ option will toggle the orientation of the split container if it
1919 contains a single window. Otherwise it makes the current window a split
1920 container with opposite orientation compared to the parent container.
1921 Use +layout toggle split+ to change the layout of any split container from
1922 splitv to splith or vice-versa. You can also define a custom sequence of layouts
1923 to cycle through with +layout toggle+, see <<manipulating_layout>>.
1924
1925 *Syntax*:
1926 --------------------------------
1927 split vertical|horizontal|toggle
1928 --------------------------------
1929
1930 *Example*:
1931 -------------------------------
1932 bindsym $mod+v split vertical
1933 bindsym $mod+h split horizontal
1934 bindsym $mod+t split toggle
1935 -------------------------------
1936
1937 === Manipulating layout
1938
1939 Use +layout toggle split+, +layout stacking+, +layout tabbed+, +layout splitv+
1940 or +layout splith+ to change the current container layout to splith/splitv,
1941 stacking, tabbed layout, splitv or splith, respectively.
1942
1943 Specify up to four layouts after +layout toggle+ to cycle through them. Every
1944 time the command is executed, the layout specified after the currently active
1945 one will be applied. If the currently active layout is not in the list, the
1946 first layout in the list will be activated.
1947
1948 To make the current window (!) fullscreen, use +fullscreen enable+ (or
1949 +fullscreen enable global+ for the global mode), to leave either fullscreen
1950 mode use +fullscreen disable+, and to toggle between these two states use
1951 +fullscreen toggle+ (or +fullscreen toggle global+).
1952
1953 Likewise, to make the current window floating (or tiling again) use +floating
1954 enable+ respectively +floating disable+ (or +floating toggle+):
1955
1956 *Syntax*:
1957 --------------------------------------------
1958 layout default|tabbed|stacking|splitv|splith
1959 layout toggle [split|all]
1960 layout toggle [split|tabbed|stacking|splitv|splith] [split|tabbed|stacking|splitv|splith]…
1961 --------------------------------------------
1962
1963 *Examples*:
1964 --------------
1965 bindsym $mod+s layout stacking
1966 bindsym $mod+l layout toggle split
1967 bindsym $mod+w layout tabbed
1968
1969 # Toggle between stacking/tabbed/split:
1970 bindsym $mod+x layout toggle
1971
1972 # Toggle between stacking/tabbed/splith/splitv:
1973 bindsym $mod+x layout toggle all
1974
1975 # Toggle between stacking/tabbed/splith:
1976 bindsym $mod+x layout toggle stacking tabbed splith
1977
1978 # Toggle between splitv/tabbed
1979 bindsym $mod+x layout toggle splitv tabbed
1980
1981 # Toggle between last split layout/tabbed/stacking
1982 bindsym $mod+x layout toggle split tabbed stacking
1983
1984 # Toggle fullscreen
1985 bindsym $mod+f fullscreen toggle
1986
1987 # Toggle floating/tiling
1988 bindsym $mod+t floating toggle
1989 --------------
1990
1991 [[_focusing_moving_containers]]
1992 === Focusing containers
1993
1994 To change focus, you can use the +focus+ command. The following options are
1995 available:
1996
1997 <criteria>::
1998     Sets focus to the container that matches the specified criteria.
1999     See <<command_criteria>>.
2000 left|right|up|down::
2001         Sets focus to the nearest container in the given direction.
2002 parent::
2003         Sets focus to the parent container of the current container.
2004 child::
2005         The opposite of +focus parent+, sets the focus to the last focused
2006         child container.
2007 floating::
2008         Sets focus to the last focused floating container.
2009 tiling::
2010         Sets focus to the last focused tiling container.
2011 mode_toggle::
2012         Toggles between floating/tiling containers.
2013 output::
2014         Followed by a direction or an output name, this will focus the
2015         corresponding output.
2016
2017 *Syntax*:
2018 ----------------------------------------------
2019 <criteria> focus
2020 focus left|right|down|up
2021 focus parent|child|floating|tiling|mode_toggle
2022 focus output left|right|up|down|primary|<output>
2023 ----------------------------------------------
2024
2025 *Examples*:
2026 -------------------------------------------------
2027 # Focus firefox
2028 bindsym $mod+F1 [class="Firefox"] focus
2029
2030 # Focus container on the left, bottom, top, right
2031 bindsym $mod+j focus left
2032 bindsym $mod+k focus down
2033 bindsym $mod+l focus up
2034 bindsym $mod+semicolon focus right
2035
2036 # Focus parent container
2037 bindsym $mod+u focus parent
2038
2039 # Focus last floating/tiling container
2040 bindsym $mod+g focus mode_toggle
2041
2042 # Focus the output right to the current one
2043 bindsym $mod+x focus output right
2044
2045 # Focus the big output
2046 bindsym $mod+x focus output HDMI-2
2047
2048 # Focus the primary output
2049 bindsym $mod+x focus output primary
2050 -------------------------------------------------
2051
2052 Note that you might not have a primary output configured yet. To do so, run:
2053 -------------------------
2054 xrandr --output <output> --primary
2055 -------------------------
2056
2057 === Moving containers
2058
2059 Use the +move+ command to move a container.
2060
2061 *Syntax*:
2062 -----------------------------------------------------
2063 # Moves the container into the given direction.
2064 # The optional pixel argument specifies how far the
2065 # container should be moved if it is floating and
2066 # defaults to 10 pixels.
2067 move <left|right|down|up> [<px> px]
2068
2069 # Moves the container to the specified pos_x and pos_y
2070 # coordinates on the screen.
2071 move position <pos_x> [px] <pos_y> [px]
2072
2073 # Moves the container to the center of the screen.
2074 # If 'absolute' is used, it is moved to the center of
2075 # all outputs.
2076 move [absolute] position center
2077
2078 # Moves the container to the current position of the
2079 # mouse cursor. Only affects floating containers.
2080 move position mouse
2081 -----------------------------------------------------
2082
2083 *Examples*:
2084 -------------------------------------------------------
2085 # Move container to the left, bottom, top, right
2086 bindsym $mod+j move left
2087 bindsym $mod+k move down
2088 bindsym $mod+l move up
2089 bindsym $mod+semicolon move right
2090
2091 # Move container, but make floating containers
2092 # move more than the default
2093 bindsym $mod+j move left 20 px
2094
2095 # Move floating container to the center of all outputs
2096 bindsym $mod+c move absolute position center
2097
2098 # Move container to the current position of the cursor
2099 bindsym $mod+m move position mouse
2100 -------------------------------------------------------
2101
2102 === Swapping containers
2103
2104 Two containers can be swapped (i.e., move to each other's position) by using
2105 the +swap+ command. They will assume the position and geometry of the container
2106 they are swapped with.
2107
2108 The first container to participate in the swapping can be selected through the
2109 normal command criteria process with the focused window being the usual
2110 fallback if no criteria are specified. The second container can be selected
2111 using one of the following methods:
2112
2113 +id+:: The X11 window ID of a client window.
2114 +con_id+:: The i3 container ID of a container.
2115 +mark+:: A container with the specified mark, see <<vim_like_marks>>.
2116
2117 Note that swapping does not work with all containers. Most notably, swapping
2118 containers that have a parent-child relationship to one another does not work.
2119
2120 *Syntax*:
2121 ----------------------------------------
2122 swap container with id|con_id|mark <arg>
2123 ----------------------------------------
2124
2125 *Examples*:
2126 -----------------------------------------------------------------
2127 # Swaps the focused container with the container marked »swapee«.
2128 swap container with mark swapee
2129
2130 # Swaps container marked »A« and »B«
2131 [con_mark="^A$"] swap container with mark B
2132 -----------------------------------------------------------------
2133
2134 === Sticky floating windows
2135
2136 If you want a window to stick to the glass, i.e., have it stay on screen even
2137 if you switch to another workspace, you can use the +sticky+ command. For
2138 example, this can be useful for notepads, a media player or a video chat
2139 window.
2140
2141 Note that while any window can be made sticky through this command, it will
2142 only take effect if the window is floating.
2143
2144 *Syntax*:
2145 ----------------------------
2146 sticky enable|disable|toggle
2147 ----------------------------
2148
2149 *Examples*:
2150 ------------------------------------------------------
2151 # make a terminal sticky that was started as a notepad
2152 for_window [instance=notepad] sticky enable
2153 ------------------------------------------------------
2154
2155 === Changing (named) workspaces/moving to workspaces
2156
2157 To change to a specific workspace, use the +workspace+ command, followed by the
2158 number or name of the workspace. Pass the optional flag
2159 +--no-auto-back-and-forth+ to disable <<workspace_auto_back_and_forth>> for this
2160 specific call only.
2161
2162 To move containers to specific workspaces, use +move container to workspace+.
2163
2164 You can also switch to the next and previous workspace with the commands
2165 +workspace next+ and +workspace prev+, which is handy, for example, if you have
2166 workspace 1, 3, 4 and 9 and you want to cycle through them with a single key
2167 combination. To restrict those to the current output, use +workspace
2168 next_on_output+ and +workspace prev_on_output+. Similarly, you can use +move
2169 container to workspace next+, +move container to workspace prev+ to move a
2170 container to the next/previous workspace and +move container to workspace current+
2171 (the last one makes sense only when used with criteria).
2172
2173 +workspace next+ cycles through either numbered or named workspaces. But when it
2174 reaches the last numbered/named workspace, it looks for named workspaces after
2175 exhausting numbered ones and looks for numbered ones after exhausting named ones.
2176
2177 See <<move_to_outputs>> for how to move a container/workspace to a different
2178 RandR output.
2179
2180 Workspace names are parsed as
2181 https://developer.gnome.org/pango/stable/PangoMarkupFormat.html[Pango markup]
2182 by i3bar.
2183
2184 [[back_and_forth]]
2185 To switch back to the previously focused workspace, use +workspace
2186 back_and_forth+; likewise, you can move containers to the previously focused
2187 workspace using +move container to workspace back_and_forth+.
2188
2189 *Syntax*:
2190 --------------------------------------------------------------------------------
2191 workspace next|prev|next_on_output|prev_on_output
2192 workspace back_and_forth
2193 workspace [--no-auto-back-and-forth] <name>
2194 workspace [--no-auto-back-and-forth] number <name>
2195
2196 move [--no-auto-back-and-forth] [window|container] [to] workspace <name>
2197 move [--no-auto-back-and-forth] [window|container] [to] workspace number <name>
2198 move [window|container] [to] workspace prev|next|current
2199 --------------------------------------------------------------------------------
2200
2201 *Examples*:
2202 -------------------------
2203 bindsym $mod+1 workspace 1
2204 bindsym $mod+2 workspace 2
2205 bindsym $mod+3 workspace 3:<span foreground="red">vim</span>
2206 ...
2207
2208 bindsym $mod+Shift+1 move container to workspace 1
2209 bindsym $mod+Shift+2 move container to workspace 2
2210 ...
2211
2212 # switch between the current and the previously focused one
2213 bindsym $mod+b workspace back_and_forth
2214 bindsym $mod+Shift+b move container to workspace back_and_forth
2215
2216 # move the whole workspace to the next output
2217 bindsym $mod+x move workspace to output right
2218
2219 # move firefox to current workspace
2220 bindsym $mod+F1 [class="Firefox"] move workspace current
2221 -------------------------
2222
2223 ==== Named workspaces
2224
2225 Workspaces are identified by their name. So, instead of using numbers in the
2226 workspace command, you can use an arbitrary name:
2227
2228 *Example*:
2229 -------------------------
2230 bindsym $mod+1 workspace mail
2231 ...
2232 -------------------------
2233
2234 If you want the workspace to have a number *and* a name, just prefix the
2235 number, like this:
2236
2237 *Example*:
2238 -------------------------
2239 bindsym $mod+1 workspace 1: mail
2240 bindsym $mod+2 workspace 2: www
2241 ...
2242 -------------------------
2243
2244 Note that the workspace will really be named "1: mail". i3 treats workspace
2245 names beginning with a number in a slightly special way. Normally, named
2246 workspaces are ordered the way they appeared. When they start with a number, i3
2247 will order them numerically. Also, you will be able to use +workspace number 1+
2248 to switch to the workspace which begins with number 1, regardless of which name
2249 it has. This is useful in case you are changing the workspace’s name
2250 dynamically. To combine both commands you can use +workspace number 1: mail+ to
2251 specify a default name if there's currently no workspace starting with a "1".
2252
2253 ==== Renaming workspaces
2254
2255 You can rename workspaces. This might be useful to start with the default
2256 numbered workspaces, do your work, and rename the workspaces afterwards to
2257 reflect what’s actually on them. You can also omit the old name to rename
2258 the currently focused workspace. This is handy if you want to use the
2259 rename command with +i3-input+.
2260
2261 *Syntax*:
2262 ----------------------------------------------------
2263 rename workspace <old_name> to <new_name>
2264 rename workspace to <new_name>
2265 ----------------------------------------------------
2266
2267 *Examples*:
2268 --------------------------------------------------------------------------
2269 i3-msg 'rename workspace 5 to 6'
2270 i3-msg 'rename workspace 1 to "1: www"'
2271 i3-msg 'rename workspace "1: www" to "10: www"'
2272 i3-msg 'rename workspace to "2: mail"'
2273 bindsym $mod+r exec i3-input -F 'rename workspace to "%s"' -P 'New name: '
2274 --------------------------------------------------------------------------
2275
2276 If you want to rename workspaces on demand while keeping the navigation stable,
2277 you can use a setup like this:
2278
2279 *Example*:
2280 -------------------------
2281 bindsym $mod+1 workspace number "1: www"
2282 bindsym $mod+2 workspace number "2: mail"
2283 ...
2284 -------------------------
2285
2286 If a workspace does not exist, the command +workspace number "1: mail"+ will
2287 create workspace "1: mail".
2288
2289 If a workspace with number 1 does already exist, the command will switch to this
2290 workspace and ignore the text part. So even when the workspace has been renamed
2291 to "1: web", the above command will still switch to it.
2292
2293 === Moving workspaces to a different screen
2294
2295 See <<move_to_outputs>> for how to move a container/workspace to a different
2296 RandR output.
2297
2298 [[move_to_outputs]]
2299 === [[_moving_containers_workspaces_to_randr_outputs]]Moving containers/workspaces to RandR outputs
2300
2301 To move a container to another RandR output (addressed by names like +LVDS1+ or
2302 +VGA1+) or to a RandR output identified by a specific direction (like +left+,
2303 +right+, +up+ or +down+), there are two commands:
2304
2305 *Syntax*:
2306 ------------------------------------------------------------
2307 move container to output left|right|down|up|current|primary|<output>
2308 move workspace to output left|right|down|up|current|primary|<output>
2309 ------------------------------------------------------------
2310
2311 *Examples*:
2312 --------------------------------------------------------
2313 # Move the current workspace to the next output
2314 # (effectively toggles when you only have two outputs)
2315 bindsym $mod+x move workspace to output right
2316
2317 # Put this window on the presentation output.
2318 bindsym $mod+x move container to output VGA1
2319
2320 # Put this window on the primary output.
2321 bindsym $mod+x move container to output primary
2322 --------------------------------------------------------
2323
2324 Note that you might not have a primary output configured yet. To do so, run:
2325 -------------------------
2326 xrandr --output <output> --primary
2327 -------------------------
2328
2329 === Moving containers/windows to marks
2330
2331 To move a container to another container with a specific mark (see <<vim_like_marks>>),
2332 you can use the following command.
2333
2334 The window will be moved right after the marked container in the tree, i.e., it ends up
2335 in the same position as if you had opened a new window when the marked container was
2336 focused. If the mark is on a split container, the window will appear as a new child
2337 after the currently focused child within that container.
2338
2339 *Syntax*:
2340 ------------------------------------
2341 move window|container to mark <mark>
2342 ------------------------------------
2343
2344 *Example*:
2345 --------------------------------------------------------
2346 for_window [instance="tabme"] move window to mark target
2347 --------------------------------------------------------
2348
2349 [[resizingconfig]]
2350 === Resizing containers/windows
2351
2352 If you want to resize containers/windows using your keyboard, you can use the
2353 +resize+ command:
2354
2355 *Syntax*:
2356 -------------------------------------------------------
2357 resize grow|shrink <direction> [<px> px [or <ppt> ppt]]
2358 resize set [width] <width> [px | ppt]
2359 resize set height <height> [px | ppt]
2360 resize set [width] <width> [px | ppt] [height] <height> [px | ppt]
2361 -------------------------------------------------------
2362
2363 Direction can either be one of +up+, +down+, +left+ or +right+. Or you can be
2364 less specific and use +width+ or +height+, in which case i3 will take/give space
2365 from all the other containers. The optional pixel argument specifies by how many
2366 pixels a container should be grown or shrunk (the default is 10 pixels). The
2367 optional ppt argument means "percentage points", and if specified it indicates
2368 that a *tiling container* should be grown or shrunk by that many points, instead
2369 of by the +px+ value.
2370
2371 Note about +resize set+: a value of 0 for <width> or <height> means "do not
2372 resize in this direction".
2373
2374 It is recommended to define bindings for resizing in a dedicated binding mode.
2375 See <<binding_modes>> and the example in the i3
2376 https://github.com/i3/i3/blob/next/etc/config.keycodes[default config] for more
2377 context.
2378
2379 *Example*:
2380 ------------------------------------------------
2381 for_window [class="urxvt"] resize set 640 480
2382 ------------------------------------------------
2383
2384 === Jumping to specific windows
2385
2386 Often when in a multi-monitor environment, you want to quickly jump to a
2387 specific window. For example, while working on workspace 3 you may want to
2388 jump to your mail client to email your boss that you’ve achieved some
2389 important goal. Instead of figuring out how to navigate to your mail client,
2390 it would be more convenient to have a shortcut. You can use the +focus+ command
2391 with criteria for that.
2392
2393 *Syntax*:
2394 ----------------------------------------------------
2395 [class="class"] focus
2396 [title="title"] focus
2397 ----------------------------------------------------
2398
2399 *Examples*:
2400 ------------------------------------------------
2401 # Get me to the next open VIM instance
2402 bindsym $mod+a [class="urxvt" title="VIM"] focus
2403 ------------------------------------------------
2404
2405 [[vim_like_marks]]
2406 === VIM-like marks (mark/goto)
2407
2408 This feature is like the jump feature: It allows you to directly jump to a
2409 specific window (this means switching to the appropriate workspace and setting
2410 focus to the windows). However, you can directly mark a specific window with
2411 an arbitrary label and use it afterwards. You can unmark the label in the same
2412 way, using the unmark command. If you don't specify a label, unmark removes all
2413 marks. You do not need to ensure that your windows have unique classes or
2414 titles, and you do not need to change your configuration file.
2415
2416 As the command needs to include the label with which you want to mark the
2417 window, you cannot simply bind it to a key.  +i3-input+ is a tool created
2418 for this purpose: It lets you input a command and sends the command to i3. It
2419 can also prefix this command and display a custom prompt for the input dialog.
2420
2421 The additional +--toggle+ option will remove the mark if the window already has
2422 this mark or add it otherwise. Note that you may need to use this in
2423 combination with +--add+ (see below) as any other marks will otherwise be
2424 removed.
2425
2426 The +--replace+ flag causes i3 to remove any existing marks, which is also the
2427 default behavior. You can use the +--add+ flag to put more than one mark on a
2428 window.
2429
2430 Refer to <<show_marks>> if you don't want marks to be shown in the window decoration.
2431
2432 *Syntax*:
2433 ----------------------------------------------
2434 mark [--add|--replace] [--toggle] <identifier>
2435 [con_mark="identifier"] focus
2436 unmark <identifier>
2437 ----------------------------------------------
2438
2439 You can use +i3-input+ to prompt for a mark name, then use the +mark+
2440 and +focus+ commands to create and jump to custom marks:
2441
2442 *Examples*:
2443 ---------------------------------------
2444 # read 1 character and mark the current window with this character
2445 bindsym $mod+m exec i3-input -F 'mark %s' -l 1 -P 'Mark: '
2446
2447 # read 1 character and go to the window with the character
2448 bindsym $mod+g exec i3-input -F '[con_mark="%s"] focus' -l 1 -P 'Goto: '
2449 ---------------------------------------
2450
2451 Alternatively, if you do not want to mess with +i3-input+, you could create
2452 separate bindings for a specific set of labels and then only use those labels:
2453
2454 *Example (in a terminal)*:
2455 ---------------------------------------------------------
2456 # marks the focused container
2457 mark irssi
2458
2459 # focus the container with the mark "irssi"
2460 '[con_mark="irssi"] focus'
2461
2462 # remove the mark "irssi" from whichever container has it
2463 unmark irssi
2464
2465 # remove all marks on all firefox windows
2466 [class="(?i)firefox"] unmark
2467 ---------------------------------------------------------
2468
2469 [[pango_markup]]
2470 === Window title format
2471
2472 By default, i3 will simply print the X11 window title. Using +title_format+,
2473 this can be customized by setting the format to the desired output. This
2474 directive supports
2475 https://developer.gnome.org/pango/stable/PangoMarkupFormat.html[Pango markup]
2476 and the following placeholders which will be replaced:
2477
2478 +%title+::
2479     For normal windows, this is the X11 window title (_NET_WM_NAME or WM_NAME
2480     as fallback). When used on containers without a window (e.g., a split
2481     container inside a tabbed/stacked layout), this will be the tree
2482     representation of the container (e.g., "H[xterm xterm]").
2483 +%class+::
2484     The X11 window class (second part of WM_CLASS). This corresponds to the
2485     +class+ criterion, see <<command_criteria>>.
2486 +%instance+::
2487     The X11 window instance (first part of WM_CLASS). This corresponds to the
2488     +instance+ criterion, see <<command_criteria>>.
2489
2490 Using the <<for_window>> directive, you can set the title format for any window
2491 based on <<command_criteria>>.
2492
2493 *Syntax*:
2494 ---------------------
2495 title_format <format>
2496 ---------------------
2497
2498 *Examples*:
2499 -------------------------------------------------------------------------------------
2500 # give the focused window a prefix
2501 bindsym $mod+p title_format "Important | %title"
2502
2503 # print all window titles bold
2504 for_window [class=".*"] title_format "<b>%title</b>"
2505
2506 # print window titles of firefox windows red
2507 for_window [class="(?i)firefox"] title_format "<span foreground='red'>%title</span>"
2508 -------------------------------------------------------------------------------------
2509
2510 === Changing border style
2511
2512 To change the border of the current client, you can use +border normal+ to use the normal
2513 border (including window title), +border pixel 1+ to use a 1-pixel border (no window title)
2514 and +border none+ to make the client borderless.
2515
2516 There is also +border toggle+ which will toggle the different border styles. The
2517 optional pixel argument can be used to specify the border width when switching
2518 to the normal and pixel styles.
2519
2520 Note that "pixel" refers to logical pixel. On HiDPI displays, a logical pixel
2521 may be represented by multiple physical pixels, so +pixel 1+ might not
2522 necessarily translate into a single pixel row wide border.
2523
2524 *Syntax*:
2525 -----------------------------------------------
2526 border normal|pixel|toggle [<n>]
2527 border none
2528
2529 # legacy syntax, equivalent to "border pixel 1"
2530 border 1pixel
2531 -----------------------------------------------
2532
2533 *Examples*:
2534 ----------------------------------------------
2535 # use window title, but no border
2536 bindsym $mod+t border normal 0
2537 # use no window title and a thick border
2538 bindsym $mod+y border pixel 3
2539 # use neither window title nor border
2540 bindsym $mod+u border none
2541 ----------------------------------------------
2542
2543 [[shmlog]]
2544 === Enabling shared memory logging
2545
2546 As described in https://i3wm.org/docs/debugging.html, i3 can log to a shared
2547 memory buffer, which you can dump using +i3-dump-log+. The +shmlog+ command
2548 allows you to enable or disable the shared memory logging at runtime.
2549
2550 Note that when using +shmlog <size_in_bytes>+, the current log will be
2551 discarded and a new one will be started.
2552
2553 *Syntax*:
2554 ------------------------------
2555 shmlog <size_in_bytes>
2556 shmlog on|off|toggle
2557 ------------------------------
2558
2559 *Examples*:
2560 ---------------
2561 # Enable/disable logging
2562 bindsym $mod+x shmlog toggle
2563
2564 # or, from a terminal:
2565 # increase the shared memory log buffer to 50 MiB
2566 i3-msg shmlog $((50*1024*1024))
2567 ---------------
2568
2569 === Enabling debug logging
2570
2571 The +debuglog+ command allows you to enable or disable debug logging at
2572 runtime. Debug logging is much more verbose than non-debug logging. This
2573 command does not activate shared memory logging (shmlog), and as such is most
2574 likely useful in combination with the above-described <<shmlog>> command.
2575
2576 *Syntax*:
2577 ----------------------
2578 debuglog on|off|toggle
2579 ----------------------
2580
2581 *Examples*:
2582 ------------------------
2583 # Enable/disable logging
2584 bindsym $mod+x debuglog toggle
2585 ------------------------
2586
2587 === Reloading/Restarting/Exiting
2588
2589 You can make i3 reload its configuration file with +reload+. You can also
2590 restart i3 inplace with the +restart+ command to get it out of some weird state
2591 (if that should ever happen) or to perform an upgrade without having to restart
2592 your X session. To exit i3 properly, you can use the +exit+ command,
2593 however you don’t need to (simply killing your X session is fine as well).
2594
2595 *Examples*:
2596 ----------------------------
2597 bindsym $mod+Shift+r restart
2598 bindsym $mod+Shift+w reload
2599 bindsym $mod+Shift+e exit
2600 ----------------------------
2601
2602 === Scratchpad
2603
2604 There are two commands to use any existing window as scratchpad window. +move
2605 scratchpad+ will move a window to the scratchpad workspace. This will make it
2606 invisible until you show it again. There is no way to open that workspace.
2607 Instead, when using +scratchpad show+, the window will be shown again, as a
2608 floating window, centered on your current workspace (using +scratchpad show+ on
2609 a visible scratchpad window will make it hidden again, so you can have a
2610 keybinding to toggle). Note that this is just a normal floating window, so if
2611 you want to "remove it from scratchpad", you can simple make it tiling again
2612 (+floating toggle+).
2613
2614 As the name indicates, this is useful for having a window with your favorite
2615 editor always at hand. However, you can also use this for other permanently
2616 running applications which you don’t want to see all the time: Your music
2617 player, alsamixer, maybe even your mail client…?
2618
2619 *Syntax*:
2620 ---------------
2621 move scratchpad
2622
2623 scratchpad show
2624 ---------------
2625
2626 *Examples*:
2627 ------------------------------------------------
2628 # Make the currently focused window a scratchpad
2629 bindsym $mod+Shift+minus move scratchpad
2630
2631 # Show the first scratchpad window
2632 bindsym $mod+minus scratchpad show
2633
2634 # Show the sup-mail scratchpad window, if any.
2635 bindsym mod4+s [title="^Sup ::"] scratchpad show
2636 ------------------------------------------------
2637
2638 === Nop
2639
2640 There is a no operation command +nop+ which allows you to override default
2641 behavior. This can be useful for, e.g., disabling a focus change on clicks with
2642 the middle mouse button.
2643
2644 The optional +comment+ argument is ignored, but will be printed to the log file
2645 for debugging purposes.
2646
2647 *Syntax*:
2648 ---------------
2649 nop [<comment>]
2650 ---------------
2651
2652 *Example*:
2653 ----------------------------------------------
2654 # Disable focus change for clicks on titlebars
2655 # with the middle mouse button
2656 bindsym button2 nop
2657 ----------------------------------------------
2658
2659 === i3bar control
2660
2661 There are two options in the configuration of each i3bar instance that can be
2662 changed during runtime by invoking a command through i3. The commands +bar
2663 hidden_state+ and +bar mode+ allow setting the current hidden_state
2664 respectively mode option of each bar. It is also possible to toggle between
2665 hide state and show state as well as between dock mode and hide mode. Each
2666 i3bar instance can be controlled individually by specifying a bar_id, if none
2667 is given, the command is executed for all bar instances.
2668
2669 *Syntax*:
2670 ---------------
2671 bar hidden_state hide|show|toggle [<bar_id>]
2672
2673 bar mode dock|hide|invisible|toggle [<bar_id>]
2674 ---------------
2675
2676 *Examples*:
2677 ------------------------------------------------
2678 # Toggle between hide state and show state
2679 bindsym $mod+m bar hidden_state toggle
2680
2681 # Toggle between dock mode and hide mode
2682 bindsym $mod+n bar mode toggle
2683
2684 # Set the bar instance with id 'bar-1' to switch to hide mode
2685 bindsym $mod+b bar mode hide bar-1
2686
2687 # Set the bar instance with id 'bar-1' to always stay hidden
2688 bindsym $mod+Shift+b bar mode invisible bar-1
2689 ------------------------------------------------
2690
2691 [[multi_monitor]]
2692 == Multiple monitors
2693
2694 As you can see in the goal list on the website, i3 was specifically developed
2695 with support for multiple monitors in mind. This section will explain how to
2696 handle multiple monitors.
2697
2698 When you have only one monitor, things are simple. You usually start with
2699 workspace 1 on your monitor and open new ones as you need them.
2700
2701 When you have more than one monitor, each monitor will get an initial
2702 workspace.  The first monitor gets 1, the second gets 2 and a possible third
2703 would get 3. When you switch to a workspace on a different monitor, i3 will
2704 switch to that monitor and then switch to the workspace. This way, you don’t
2705 need shortcuts to switch to a specific monitor, and you don’t need to remember
2706 where you put which workspace. New workspaces will be opened on the currently
2707 active monitor.  It is not possible to have a monitor without a workspace.
2708
2709 The idea of making workspaces global is based on the observation that most
2710 users have a very limited set of workspaces on their additional monitors.
2711 They are often used for a specific task (browser, shell) or for monitoring
2712 several things (mail, IRC, syslog, …). Thus, using one workspace on one monitor
2713 and "the rest" on the other monitors often makes sense. However, as you can
2714 create an unlimited number of workspaces in i3 and tie them to specific
2715 screens, you can have the "traditional" approach of having X workspaces per
2716 screen by changing your configuration (using modes, for example).
2717
2718 === Configuring your monitors
2719
2720 To help you get going if you have never used multiple monitors before, here is
2721 a short overview of the xrandr options which will probably be of interest to
2722 you. It is always useful to get an overview of the current screen configuration.
2723 Just run "xrandr" and you will get an output like the following:
2724 -------------------------------------------------------------------------------
2725 $ xrandr
2726 Screen 0: minimum 320 x 200, current 1280 x 800, maximum 8192 x 8192
2727 VGA1 disconnected (normal left inverted right x axis y axis)
2728 LVDS1 connected 1280x800+0+0 (normal left inverted right x axis y axis) 261mm x 163mm
2729    1280x800       60.0*+   50.0
2730    1024x768       85.0     75.0     70.1     60.0
2731    832x624        74.6
2732    800x600        85.1     72.2     75.0     60.3     56.2
2733    640x480        85.0     72.8     75.0     59.9
2734    720x400        85.0
2735    640x400        85.1
2736    640x350        85.1
2737 --------------------------------------------------------------------------------------
2738
2739 Several things are important here: You can see that +LVDS1+ is connected (of
2740 course, it is the internal flat panel) but +VGA1+ is not. If you have a monitor
2741 connected to one of the ports but xrandr still says "disconnected", you should
2742 check your cable, monitor or graphics driver.
2743
2744 The maximum resolution you can see at the end of the first line is the maximum
2745 combined resolution of your monitors. By default, it is usually too low and has
2746 to be increased by editing +/etc/X11/xorg.conf+.
2747
2748 So, say you connected VGA1 and want to use it as an additional screen:
2749 -------------------------------------------
2750 xrandr --output VGA1 --auto --left-of LVDS1
2751 -------------------------------------------
2752 This command makes xrandr try to find the native resolution of the device
2753 connected to +VGA1+ and configures it to the left of your internal flat panel.
2754 When running "xrandr" again, the output looks like this:
2755 -------------------------------------------------------------------------------
2756 $ xrandr
2757 Screen 0: minimum 320 x 200, current 2560 x 1024, maximum 8192 x 8192
2758 VGA1 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 338mm x 270mm
2759    1280x1024      60.0*+   75.0
2760    1280x960       60.0
2761    1152x864       75.0
2762    1024x768       75.1     70.1     60.0
2763    832x624        74.6
2764    800x600        72.2     75.0     60.3     56.2
2765    640x480        72.8     75.0     66.7     60.0
2766    720x400        70.1
2767 LVDS1 connected 1280x800+1280+0 (normal left inverted right x axis y axis) 261mm x 163mm
2768    1280x800       60.0*+   50.0
2769    1024x768       85.0     75.0     70.1     60.0
2770    832x624        74.6
2771    800x600        85.1     72.2     75.0     60.3     56.2
2772    640x480        85.0     72.8     75.0     59.9
2773    720x400        85.0
2774    640x400        85.1
2775    640x350        85.1
2776 -------------------------------------------------------------------------------
2777 Please note that i3 uses exactly the same API as xrandr does, so it will see
2778 only what you can see in xrandr.
2779
2780 See also <<presentations>> for more examples of multi-monitor setups.
2781
2782 === Interesting configuration for multi-monitor environments
2783
2784 There are several things to configure in i3 which may be interesting if you
2785 have more than one monitor:
2786
2787 1. You can specify which workspace should be put on which screen. This
2788    allows you to have a different set of workspaces when starting than just
2789    1 for the first monitor, 2 for the second and so on. See
2790    <<workspace_screen>>.
2791 2. If you want some applications to generally open on the bigger screen
2792    (MPlayer, Firefox, …), you can assign them to a specific workspace, see
2793    <<assign_workspace>>.
2794 3. If you have many workspaces on many monitors, it might get hard to keep
2795    track of which window you put where. Thus, you can use vim-like marks to
2796    quickly switch between windows. See <<vim_like_marks>>.
2797 4. For information on how to move existing workspaces between monitors,
2798    see <<move_to_outputs>>.
2799
2800 == i3 and the rest of your software world
2801
2802 === Displaying a status line
2803
2804 A very common thing amongst users of exotic window managers is a status line at
2805 some corner of the screen. It is an often superior replacement to the widget
2806 approach you have in the task bar of a traditional desktop environment.
2807
2808 If you don’t already have your favorite way of generating such a status line
2809 (self-written scripts, conky, …), then i3status is the recommended tool for
2810 this task. It was written in C with the goal of using as few syscalls as
2811 possible to reduce the time your CPU is woken up from sleep states. Because
2812 i3status only spits out text, you need to combine it with some other tool, like
2813 i3bar. See <<status_command>> for how to display i3status in i3bar.
2814
2815 Regardless of which application you use to display the status line, you
2816 want to make sure that it registers as a dock window using EWMH hints. i3 will
2817 position the window either at the top or at the bottom of the screen, depending
2818 on which hint the application sets. With i3bar, you can configure its position,
2819 see <<i3bar_position>>.
2820
2821 [[presentations]]
2822 === Giving presentations (multi-monitor)
2823
2824 When giving a presentation, you typically want the audience to see what you see
2825 on your screen and then go through a series of slides (if the presentation is
2826 simple). For more complex presentations, you might want to have some notes
2827 which only you can see on your screen, while the audience can only see the
2828 slides.
2829
2830 ==== Case 1: everybody gets the same output
2831 This is the simple case. You connect your computer to the video projector,
2832 turn on both (computer and video projector) and configure your X server to
2833 clone the internal flat panel of your computer to the video output:
2834 -----------------------------------------------------
2835 xrandr --output VGA1 --mode 1024x768 --same-as LVDS1
2836 -----------------------------------------------------
2837 i3 will then use the lowest common subset of screen resolutions, the rest of
2838 your screen will be left untouched (it will show the X background). So, in
2839 our example, this would be 1024x768 (my notebook has 1280x800).
2840
2841 ==== Case 2: you can see more than your audience
2842 This case is a bit harder. First of all, you should configure the VGA output
2843 somewhere near your internal flat panel, say right of it:
2844 -----------------------------------------------------
2845 xrandr --output VGA1 --mode 1024x768 --right-of LVDS1
2846 -----------------------------------------------------
2847 Now, i3 will put a new workspace (depending on your settings) on the new screen
2848 and you are in multi-monitor mode (see <<multi_monitor>>).
2849
2850 Because i3 is not a compositing window manager, there is no ability to
2851 display a window on two screens at the same time. Instead, your presentation
2852 software needs to do this job (that is, open a window on each screen).
2853
2854 [[hidpi]]
2855 === High-resolution displays (aka HIDPI displays)
2856
2857 See https://wiki.archlinux.org/index.php/HiDPI for details on how to enable
2858 scaling in various parts of the Linux desktop. i3 will read the desired DPI from
2859 the `Xft.dpi` property. The property defaults to 96 DPI, so to achieve 200%
2860 scaling, you’d set `Xft.dpi: 192` in `~/.Xresources`.
2861
2862 If you are a long-time i3 user who just got a new monitor, double-check that:
2863
2864 * You are using a scalable font (starting with “pango:”) in your i3 config.
2865
2866 * You are using a terminal emulator which supports scaling. You could
2867   temporarily switch to gnome-terminal, which is known to support scaling out of
2868   the box, until you figure out how to adjust the font size in your favorite
2869   terminal emulator.