]> git.sur5r.net Git - i3/i3/blob - docs/userguide
update the userguide for tree (not complete yet)
[i3/i3] / docs / userguide
1 i3 User’s Guide
2 ===============
3 Michael Stapelberg <michael+i3@stapelberg.de>
4 May 2011
5
6 *********************************************************************************
7 This document is not yet finished. The tree branch is still in development. The
8 information provided here should be correct, just not complete yet.
9 *********************************************************************************
10
11 This document contains all the information you need to configure and use the i3
12 window manager. If it does not, please contact us on IRC (preferred) or post your
13 question(s) on the mailing list.
14
15 //////////////////////////////////////////////////////////////////////////////
16 == Default keybindings
17
18 For the "too long; didn’t read" people, here is an overview of the default
19 keybindings (click to see the full size image):
20
21 *Keys to use with Mod1 (alt):*
22
23 image:keyboard-layer1.png["Keys to use with Mod1 (alt)",width=600,link="keyboard-layer1.png"]
24
25 *Keys to use with Shift+Mod1:*
26
27 image:keyboard-layer2.png["Keys to use with Shift+Mod1",width=600,link="keyboard-layer2.png"]
28
29 As i3 uses keycodes in the default configuration, it does not matter which
30 keyboard layout you actually use. The key positions are what matters (of course
31 you can also use keysymbols, see <<keybindings>>).
32
33 The red keys are the modifiers you need to press (by default), the blue keys
34 are your homerow.
35 //////////////////////////////////////////////////////////////////////////////
36
37 == Using i3
38
39 Throughout this guide, the keyword +mod+ will be used to refer to the
40 configured modifier. This is the windows key (mod4) by default, with alt (mod1)
41 being a popular alternative.
42
43 === Opening terminals and moving around
44
45 One very basic operation is opening a new terminal. By default, the keybinding
46 for this is mod+Enter, that is Win+Enter in the default configuration. By
47 pressing mod+Enter, a new terminal will be opened.  It will fill the whole
48 space available on your screen.
49
50 image:single_terminal.png[Single terminal]
51
52 If you now open another terminal, i3 will place it next to the current one,
53 splitting the screen size in half. Depending on your monitor, i3 will put the
54 new window right to the old window (for widescreen) or below the old window
55 (rotated displays).
56
57 image:two_terminals.png[Two terminals]
58
59 To move the focus between the two terminals, you use the direction keys which
60 you may know from the editor +vi+. However, in i3, your homerow is used for
61 these keys (in +vi+, the keys are shifted to the left by one for compatibility
62 with most keyboard layouts). Therefore, +mod+J+ is left, +mod+K+ is down,
63 +mod+L+ is up and `mod+;` is right. So, to switch between the terminals,
64 use +mod+K+ or +mod+L+.
65
66 At the moment, your workspace is split (it contains two terminals) in a
67 specific direction (horizontal by default). Every window can be split
68 horizontally or vertically again, just like the workspace. The terminology is
69 "window" for a container that actually contains an X11 window (like a terminal
70 or browser) and "split container" for containers that consist of one or more
71 windows.
72
73 TODO: picture of the tree
74
75 To split a window vertically, press +mod+v+. To split it horizontally, press
76 +mod+h+.
77
78 === Changing container modes
79
80 A container can have the following modes:
81
82 default::
83 Windows are sized so that every window gets an equal amount of space in the
84 container.
85 stacking::
86 Only the focused window in the container is displayed. You get a list of
87 windows at the top of the container.
88 tabbed::
89 The same principle as +stacking+, but the list of windows at the top is only
90 a single line which is vertically split.
91
92 To switch modes, press +Mod1+e+ for default, +Mod1+h+ for stacking and
93 +Mod1+w+ for tabbed.
94
95 image:modes.png[Container modes]
96
97 === Toggling fullscreen mode for a window
98
99 To display a window fullscreen or to go out of fullscreen mode again, press
100 +mod+f+.
101
102 /////////////////////////////////////////////////////////////////////////////
103 TODO: not yet implemented
104
105 There is also a global fullscreen mode in i3 in which the client will use all
106 available outputs. To use it, or to get out of it again, press +mod+Shift+f+.
107 /////////////////////////////////////////////////////////////////////////////
108
109 === Opening other applications
110
111 Aside from opening applications from a terminal, you can also use the handy
112 +dmenu+ which is opened by pressing +mod+p+ by default. Just type the name
113 (or a part of it) of the application which you want to open. The application
114 typed has to be in your +$PATH+ for this to work.
115
116 Additionally, if you have applications you open very frequently, you can
117 create a keybinding for starting the application directly. See the section
118 "Configuring i3" for details.
119
120 === Closing windows
121
122 If an application does not provide a mechanism for closing (most applications
123 provide a menu, the escape key or a shortcut like +Control+W+ to close), you
124 can press +Mod1+Shift+q+ to kill a window. For applications which support
125 the WM_DELETE protocol, this will correctly close the application (saving
126 any modifications or doing other cleanup). If the application doesn’t support
127 the WM_DELETE protocol your X server will kill the window and the behaviour
128 depends on the application.
129
130 === Using workspaces
131
132 Workspaces are an easy way to group a set of windows. By default, you are on
133 the first workspace, as the bar on the bottom left indicates. To switch to
134 another workspace, press +mod+num+ where +num+ is the number of the workspace
135 you want to use. If the workspace does not exist yet, it will be created.
136
137 A common paradigm is to put the web browser on one workspace, communication
138 applications (+mutt+, +irssi+, ...) on another one, and the ones with which you
139 work, on the third one. Of course, there is no need to follow this approach.
140
141 If you have multiple screens, a workspace will be created on each screen at
142 startup. If you open a new workspace, it will be bound to the screen you
143 created it on.  When you switch to a workspace on another screen, i3 will set
144 focus to that screen.
145
146 === Moving windows to workspaces
147
148 To move a window to another workspace, simply press +mod+Shift+num+ where
149 +num+ is (like when switching workspaces) the number of the target workspace.
150 Similarly to switching workspaces, the target workspace will be created if
151 it does not yet exist.
152
153 === Resizing
154
155 The easiest way to resize a container is by using the mouse: Grab the border
156 and move it to the wanted size.
157
158 See <<resizingconfig>> for how to configure i3 to be able to resize
159 columns/rows with your keyboard.
160
161 === Restarting i3 inplace
162
163 To restart i3 inplace (and thus get into a clean state if there is a bug, or
164 to upgrade to a newer version of i3) you can use +mod+Shift+r+.
165
166 === Exiting i3
167
168 To cleanly exit i3 without killing your X server, you can use +mod+Shift+e+.
169
170 === Floating
171
172 Floating mode is the opposite of tiling mode. The position and size of a window
173 are not managed by i3, but by you. Using this mode violates the tiling
174 paradigm but can be useful for some corner cases like "Save as" dialog
175 windows, or toolbar windows (GIMP or similar). Those windows usually set the
176 appropriate hint and are opened in floating mode by default.
177
178 You can enable floating mode for a window by pressing +mod+Shift+Space+. By
179 dragging the window’s titlebar with your mouse you can move the window
180 around. By grabbing the borders and moving them you can resize the window. You
181 can also do that by using the <<floating_modifier>>.
182
183 For resizing floating windows with your keyboard, see <<resizingconfig>>.
184
185 Floating windows are always on top of tiling windows.
186
187 == Tree
188
189 The most important change and reason for the name is that i3 stores all
190 information about the X11 outputs, workspaces and layout of the windows on them
191 in a tree. The root node is the X11 root window, followed by the X11 outputs,
192 then workspaces and finally the windows themselve. In previous versions of i3
193 we had multiple lists (of outputs, workspaces) and a table for each workspace.
194 That approach turned out to be complicated to use (snapping), understand and
195 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 === Orientation and Split Containers
210
211 [[OrientationSplit]]
212
213 It is only natural to use so-called +Split Containers+ in order to build a
214 layout when using a tree as data structure. In i3, every +Container+ has an
215 orientation (horizontal, vertical or unspecified). So, in our example with the
216 workspace, the default orientation of the workspace +Container+ is horizontal
217 (most monitors are widescreen nowadays). If you change the orientation to
218 vertical (+Alt+v+ in the default config) and *then* open two terminals, i3 will
219 configure your windows like this:
220
221 image::tree-shot2.png["shot2",title="Vertical Workspace Orientation"]
222
223 An interesting new feature of the tree branch is the ability to split anything:
224 Let’s assume you have two terminals on a workspace (with horizontal
225 orientation), focus is on the right terminal. Now you want to open another
226 terminal window below the current one. If you would just open a new terminal
227 window, it would show up to the right due to the horizontal workspace
228 orientation. Instead, press +Alt+v+ to create a +Vertical Split Container+ (to
229 open a +Horizontal Split Container+, use +Alt+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 === Level up
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 +level up+, which will focus the +Parent Container+ of
248 the current +Container+. In this case, you would focus the +Vertical Split
249 Container+ which is *inside* the horizontally oriented workspace. Thus, now new
250 windows will be opened to the right of the +Vertical Split Container+:
251
252 image::tree-shot3.png["shot3",title="Level Up, then open new terminal"]
253
254
255 == Configuring i3
256
257 This is where the real fun begins ;-). Most things are very dependant on your
258 ideal working environment so we can’t make reasonable defaults for them.
259
260 While not using a programming language for the configuration, i3 stays
261 quite flexible in regards to the things you usually want your window manager
262 to do.
263
264 For example, you can configure bindings to jump to specific windows,
265 you can set specific applications to start on specific workspaces, you can
266 automatically start applications, you can change the colors of i3, and you
267 can bind your keys to do useful things.
268
269 To change the configuration of i3, copy +/etc/i3/config+ to +\~/.i3/config+
270 (or +~/.config/i3/config+ if you like the XDG directory scheme) and edit it
271 with a text editor.
272
273 === Comments
274
275 It is possible and recommended to use comments in your configuration file to
276 properly document your setup for later reference. Comments are started with
277 a # and can only be used at the beginning of a line:
278
279 *Examples*:
280 -------------------
281 # This is a comment
282 -------------------
283
284 === Fonts
285
286 i3 uses X core fonts (not Xft) for rendering window titles and the internal
287 workspace bar. You can use +xfontsel(1)+ to generate such a font description.
288 To see special characters (Unicode), you need to use a font which supports
289 the ISO-10646 encoding.
290
291 If i3 cannot open the configured font, it will output an error in the logfile
292 and fall back to a working font.
293
294 *Syntax*:
295 ------------------------------
296 font <X core font description>
297 ------------------------------
298
299 *Examples*:
300 --------------------------------------------------------------
301 font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
302 --------------------------------------------------------------
303
304 [[keybindings]]
305
306 === Keyboard bindings
307
308 A keyboard binding makes i3 execute a command (see below) upon pressing a
309 specific key. i3 allows you to bind either on keycodes or on keysyms (you can
310 also mix your bindings, though i3 will not protect you from overlapping ones).
311
312 * A keysym (key symbol) is a description for a specific symbol, like "a"
313   or "b", but also more strange ones like "underscore" instead of "_". These
314   are the ones you use in Xmodmap to remap your keys. To get the current
315   mapping of your keys, use +xmodmap -pke+.
316
317 * Keycodes do not need to have a symbol assigned (handy for some hotkeys
318   on some notebooks) and they will not change their meaning as you switch to a
319   different keyboard layout (when using +xmodmap+).
320
321 My recommendation is: If you often switch keyboard layouts but you want to keep
322 your bindings in the same physical location on the keyboard, use keycodes.
323 If you don’t switch layouts, and want a clean and simple config file, use
324 keysyms.
325
326 *Syntax*:
327 ----------------------------------
328 bindsym [Modifiers+]keysym command
329 bindcode [Modifiers+]keycode command
330 ----------------------------------
331
332 *Examples*:
333 --------------------------------
334 # Fullscreen
335 bindsym Mod1+f f
336
337 # Restart
338 bindsym Mod1+Shift+r restart
339
340 # Notebook-specific hotkeys
341 bindcode 214 exec /home/michael/toggle_beamer.sh
342 --------------------------------
343
344 Available Modifiers:
345
346 Mod1-Mod5, Shift, Control::
347 Standard modifiers, see +xmodmap(1)+
348
349 Mode_switch::
350 Unlike other window managers, i3 can use Mode_switch as a modifier. This allows
351 you to remap capslock (for example) to Mode_switch and use it for both: typing
352 umlauts or special characters 'and' having some comfortably reachable key
353 bindings. For example, when typing, capslock+1 or capslock+2 for switching
354 workspaces is totally convenient. Try it :-).
355
356 [[floating_modifier]]
357
358 === The floating modifier
359
360 To move floating windows with your mouse, you can either grab their titlebar
361 or configure the so called floating modifier which you can then press and
362 click anywhere in the window itself to move it. The most common setup is to
363 use the same key you use for managing windows (Mod1 for example). Then
364 you can press Mod1, click into a window using your left mouse button, and drag
365 it to the position you want.
366
367 When holding the floating modifier, you can resize a floating window by
368 pressing the right mouse button on it and moving around while holding it. If
369 you hold the shift button as well, the resize will be proportional.
370
371 *Syntax*:
372 --------------------------------
373 floating_modifier <Modifiers>
374 --------------------------------
375
376 *Examples*:
377 --------------------------------
378 floating_modifier Mod1
379 --------------------------------
380
381 ////////////////////////////////////////////////////////////////////////
382 === Layout mode for new containers
383
384 TODO: this is workspace_layout. but workspace_layout only works for the first
385 con, right?
386
387 This option determines in which mode new containers will start. See also
388 <<stack-limit>>.
389
390 *Syntax*:
391 ---------------------------------------------
392 new_container <default|stacking|tabbed>
393 new_container stack-limit <cols|rows> <value>
394 ---------------------------------------------
395
396 *Examples*:
397 ---------------------
398 new_container tabbed
399 ---------------------
400 ////////////////////////////////////////////////////////////////////////
401
402 === Border style for new windows
403
404 This option determines which border style new windows will have.
405
406 *Syntax*:
407 ---------------------------------------------
408 new_window <normal|1pixel|borderless>
409 ---------------------------------------------
410
411 *Examples*:
412 ---------------------
413 new_window 1pixel
414 ---------------------
415
416 === Variables
417
418 As you learned in the section about keyboard bindings, you will have
419 to configure lots of bindings containing modifier keys. If you want to save
420 yourself some typing and be able to change the modifier you use later,
421 variables can be handy.
422
423 *Syntax*:
424 --------------
425 set name value
426 --------------
427
428 *Examples*:
429 ------------------------
430 set $m Mod1
431 bindsym $m+Shift+r restart
432 ------------------------
433
434 Variables are directly replaced in the file when parsing. There is no fancy
435 handling and there are absolutely no plans to change this. If you need a more
436 dynamic configuration you should create a little script which generates a
437 configuration file and run it before starting i3 (for example in your
438 +.xsession+ file).
439
440 === Automatically putting clients on specific workspaces
441
442 [[assign_workspace]]
443
444 It is recommended that you match on window classes wherever possible because
445 some applications first create their window, and then worry about setting the
446 correct title. Firefox with Vimperator comes to mind. The window starts up
447 being named Firefox, and only when Vimperator is loaded does the title change.
448 As i3 will get the title as soon as the application maps the window (mapping
449 means actually displaying it on the screen), you’d need to have to match on
450 'Firefox' in this case.
451
452 You can prefix or suffix workspaces with a `~` to specify that matching clients
453 should be put into floating mode. If you specify only a `~`, the client will
454 not be put onto any workspace, but will be set floating on the current one.
455
456 *Syntax*:
457 ------------------------------------------------------------
458 assign ["]window class[/window title]["] [→] [workspace]
459 ------------------------------------------------------------
460
461 *Examples*:
462 ----------------------
463 assign urxvt 2
464 assign urxvt → 2
465 assign urxvt → work
466 assign "urxvt" → 2
467 assign "urxvt/VIM" → 3
468 assign "gecko" → 4
469 ----------------------
470
471 Note that the arrow is not required, it just looks good :-). If you decide to
472 use it, it has to be a UTF-8 encoded arrow, not `->` or something like that.
473
474 === Automatically starting applications on i3 startup
475
476 By using the +exec+ keyword outside a keybinding, you can configure which
477 commands will be performed by i3 on initial startup (not when restarting i3
478 in-place however). These commands will be run in order.
479
480 *Syntax*:
481 ------------
482 exec command
483 ------------
484
485 *Examples*:
486 --------------------------------
487 exec i3status | dzen2 -dock
488 --------------------------------
489
490 [[workspace_screen]]
491
492 === Automatically putting workspaces on specific screens
493
494 If you assign clients to workspaces, it might be handy to put the
495 workspaces on specific screens. Also, the assignment of workspaces to screens
496 will determine which workspace i3 uses for a new screen when adding screens
497 or when starting (e.g., by default it will use 1 for the first screen, 2 for
498 the second screen and so on).
499
500 *Syntax*:
501 ----------------------------------
502 workspace <number> output <output>
503 ----------------------------------
504
505 The 'output' is the name of the RandR output you attach your screen to. On a
506 laptop, you might have VGA1 and LVDS1 as output names. You can see the
507 available outputs by running +xrandr --current+.
508
509 *Examples*:
510 ---------------------------
511 workspace 1 output LVDS1
512 workspace 5 output VGA1
513 ---------------------------
514
515 === Changing colors
516
517 You can change all colors which i3 uses to draw the window decorations and the
518 bottom bar.
519
520 *Syntax*:
521 --------------------------------------------
522 colorclass border background text
523 --------------------------------------------
524
525 Where colorclass can be one of:
526
527 client.focused::
528         A client which currently has the focus.
529 client.focused_inactive::
530         A client which is the focused one of its container, but it does not have
531         the focus at the moment.
532 client.unfocused::
533         A client which is not the focused one of its container.
534 client.urgent::
535         A client which has its urgency hint activated.
536 bar.focused::
537         The current workspace in the bottom bar.
538 bar.unfocused::
539         All other workspaces in the bottom bar.
540 bar.urgent::
541         A workspace which has at least one client with an activated urgency hint.
542
543 You can also specify the color to be used to paint the background of the client
544 windows. This color will be used to paint the window on top of which the client
545 will be rendered.
546
547 *Syntax*:
548 -----------------------
549 client.background color
550 -----------------------
551
552 Only clients that do not cover the whole area of this window expose the color
553 used to paint it. If you use a color other than black for your terminals, you
554 most likely want to set the client background color to the same color as your
555 terminal program's background color to avoid black gaps between the rendered
556 area of the termianal and the i3 border.
557
558 Colors are in HTML hex format (#rrggbb), see the following example:
559
560 *Examples*:
561 --------------------------------------
562 # class        border  backgr. text
563 client.focused #2F343A #900000 #FFFFFF
564 --------------------------------------
565
566 Note that for the window decorations, the color around the child window is the
567 background color, and the border color is only the two thin lines at the top of
568 the window.
569
570 === Interprocess communication
571
572 i3 uses unix sockets to provide an IPC interface. This allows third-party
573 programs to get information from i3, such as the current workspaces
574 (to display a workspace bar), and to control i3.
575
576 To enable it, you have to configure a path where the unix socket will be
577 stored. The default path is +/tmp/i3-ipc.sock+.
578
579 You can override the default path through the environment-variable +I3SOCK+.
580
581 *Examples*:
582 ----------------------------
583 ipc-socket /tmp/i3-ipc.sock
584 ----------------------------
585
586 You can then use the +i3-msg+ application to perform any command listed in
587 the next section.
588
589 === Disable focus follows mouse
590
591 If you have a setup where your mouse usually is in your way (like a touchpad
592 on your laptop which you do not want to disable completely), you might want
593 to disable 'focus follows mouse' and control focus only by using your keyboard.
594 The mouse will still be useful inside the currently active window (for example
595 to click on links in your browser window).
596
597 *Syntax*:
598 ----------------------------
599 focus_follows_mouse <yes|no>
600 ----------------------------
601
602 *Examples*:
603 ----------------------
604 focus_follows_mouse no
605 ----------------------
606
607 == List of commands
608
609 === Manipulating layout
610
611 To change the layout of the current container to stacking, use +layout
612 stacking+, for default use +layout default+ and for tabbed, use +layout
613 tabbed+. To make the current client (!) fullscreen, use +fullscreen+, to make
614 it floating (or tiling again) use +mode floating+ respectively +mode tiling+
615 (or +mode toggle+):
616
617 *Examples*:
618 --------------
619 bindsym Mod1+s layout stacking
620 bindsym Mod1+l layout default
621 bindsym Mod1+w layout tabbed
622
623 # Toggle fullscreen
624 bindsym Mod1+f fullscreen
625
626 # Toggle floating/tiling
627 bindsym Mod1+t mode toggle
628 --------------
629
630 === Focusing/Moving containers
631
632 To change the focus, use one of the +prev h+, +next v+, +prev v+ and +next h+
633 commands, meaning left, down, up, right (respectively).
634
635 For moving, use +move left+, +move right+, +move down+ and +move up+.
636
637 *Examples*:
638 ----------------------
639 # Focus clients on the left, bottom, top, right:
640 bindsym Mod1+j prev h
641 bindsym Mod1+k next v
642 bindsym Mod1+j prev v
643 bindsym Mod1+semicolon next h
644
645 # Move client to the left, bottom, top, right:
646 bindsym Mod1+j move left
647 bindsym Mod1+k move down
648 bindsym Mod1+j move up
649 bindsym Mod1+semicolon move right
650 ----------------------
651
652 === Changing workspaces/moving containers to workspaces
653
654 To change to a specific workspace, use the +workspace+ command, followed by the
655 number or name of the workspace. To move containers, use +move workspace+.
656
657 //////////////////////////////////////////////////////////////////////////////
658 TODO: not yet implemented
659
660 You can also switch to the next and previous workspace with the commands +nw+
661 and +pw+, which is handy, for example, if you have workspace 1, 3, 4 and 9 and
662 you want to cycle through them with a single key combination.
663 //////////////////////////////////////////////////////////////////////////////
664
665 *Examples*:
666 -------------------------
667 bindsym Mod1+1 workspace 1
668 bindsym Mod1+2 workspace 2
669 ...
670
671 bindsym Mod1+Shift+1 move workspace 1
672 bindsym Mod1+Shift+2 move workspace 2
673 ...
674 -------------------------
675
676 [[resizingconfig]]
677
678 === Resizing columns/rows
679
680 If you want to resize columns/rows using your keyboard, you can use the
681 +resize+ command, I recommend using it inside a so called +mode+:
682
683 ///////////////////////////////////////////////////////////////////////
684 TODO: mode is not yet implemented
685 .Example: Configuration file, defining a mode for resizing
686 ----------------------------------------------------------------------
687 mode "resize" {
688         # These bindings trigger as soon as you enter the resize mode
689
690         # They resize the border in the direction you pressed, e.g.
691         # when pressing left, the window is resized so that it has
692         # more space on its left
693
694         bindsym j resize shrink left
695         bindsym Shift+j resize grow left
696
697         bindsym k resize grow bottom
698         bindsym Shift+k resize shrink bottom
699
700         bindsym l resize shrink top
701         bindsym Shift+l resize grow top
702
703         bindsym semicolon resize grow right
704         bindsym Shift+semicolon resize shrink right
705
706         bindcode 36 mode default
707 }
708
709 # Enter resize mode
710 bindsym Mod1+r mode resize
711 ----------------------------------------------------------------------
712
713 ///////////////////////////////////////////////////////////////////////
714
715 === Jumping to specific windows
716
717 Often when in a multi-monitor environment, you want to quickly jump to a
718 specific window. For example, while working on workspace 3 you may want to
719 jump to your mail client to email your boss that you’ve achieved some
720 important goal. Instead of figuring out how to navigate to your mailclient,
721 it would be more convenient to have a shortcut. You can use the +focus+ command
722 for that.
723
724 *Syntax*:
725 ----------------------------------------------------
726 [class="class"] focus
727 [title="title"] focus
728 ----------------------------------------------------
729
730 *Examples*:
731 ------------------------------------------------
732 # Get me to the next open VIM instance
733 bindsym Mod1+a [class="urxvt" title="VIM"] focus
734 ------------------------------------------------
735
736 === VIM-like marks (mark/goto)
737
738 [[vim_like_marks]]
739
740 This feature is like the jump feature: It allows you to directly jump to a
741 specific window (this means switching to the appropriate workspace and setting
742 focus to the windows). However, you can directly mark a specific window with
743 an arbitrary label and use it afterwards.  You do not need to ensure that your
744 windows have unique classes or titles, and you do not need to change your
745 configuration file.
746
747 As the command needs to include the label with which you want to mark the
748 window, you cannot simply bind it to a key.  +i3-input+ is a tool created
749 for this purpose: It lets you input a command and sends the command to i3. It
750 can also prefix this command and display a custom prompt for the input dialog.
751
752 *Syntax*:
753 ------------------------------
754 mark <identifier>
755 [con_mark="identifier"] focus
756 ------------------------------
757
758 ///////////////////////////////////////////////////////////////////
759 TODO: make i3-input replace %s
760 *Examples*:
761 ---------------------------------------
762 # Read 1 character and mark the current window with this character
763 bindsym Mod1+m exec i3-input -p 'mark ' -l 1 -P 'Mark: '
764
765 # Read 1 character and go to the window with the character
766 bindsym Mod1+g exec i3-input -p 'goto ' -l 1 -P 'Goto: '
767 ---------------------------------------
768
769 Alternatively, if you do not want to mess with +i3-input+, you could create
770 seperate bindings for a specific set of labels and then only use those labels.
771 ///////////////////////////////////////////////////////////////////
772
773 ///////////////////////////////////////////////////////////////////////////////
774 TODO: not yet implemented
775 === Traveling the focus stack
776
777 This mechanism can be thought of as the opposite of the +jump+ command.
778 It travels the focus stack and jumps to the window which had focus previously.
779
780 *Syntax*:
781 --------------
782 focus [number] | floating | tiling | ft
783 --------------
784
785 Where +number+ by default is 1 meaning that the next client in the focus stack
786 will be selected.
787
788 The special values have the following meaning:
789
790 floating::
791         The next floating window is selected.
792 tiling::
793         The next tiling window is selected.
794 ft::
795         If the current window is floating, the next tiling window will be
796        selected; and vice-versa.
797 ///////////////////////////////////////////////////////////////////////////////
798
799 === Changing border style
800
801 To change the border of the current client, you can use +border normal+ to use the normal
802 border (including window title), +border 1pixel+ to use a 1-pixel border (no window title)
803 and +border none+ to make the client borderless.
804
805 ////////////////////////////////////////////////////////////////////////////
806 TODO: not yet implemented
807 There is also +border toggle+ which will toggle the different border styles.
808 ////////////////////////////////////////////////////////////////////////////
809
810 *Examples*:
811 ----------------------------
812 bindsym Mod1+t border normal
813 bindsym Mod1+y border 1pixel
814 bindsym Mod1+u border none
815 ----------------------------
816
817 [[stack-limit]]
818
819 ///////////////////////////////////////////////////////////////////////////////
820 TODO: not yet implemented
821 === Changing the stack-limit of a container
822
823 If you have a single container with a lot of windows inside it (say, more than
824 10), the default layout of a stacking container can get a little unhandy.
825 Depending on your screen’s size, you might end up with only half of the title
826 lines being actually used, wasting a lot of screen space.
827
828 Using the +stack-limit+ command, you can limit the number of rows or columns
829 in a stacking container. i3 will create columns or rows (depending on what
830 you limited) automatically as needed.
831
832 *Syntax*:
833 --------------------------------
834 stack-limit <cols|rows> <value>
835 --------------------------------
836
837 *Examples*:
838 -------------------
839 # I always want to have two window titles in one line
840 stack-limit cols 2
841
842 # Not more than 5 rows in this stacking container
843 stack-limit rows 5
844 -------------------
845
846 image:stacklimit.png[Container limited to two columns]
847 ///////////////////////////////////////////////////////////////////////////////
848
849 === Reloading/Restarting/Exiting
850
851 You can make i3 reload its configuration file with +reload+. You can also
852 restart i3 inplace with the +restart+ command to get it out of some weird state
853 (if that should ever happen) or to perform an upgrade without having to restart
854 your X session. However, your layout is not preserved at the moment, meaning
855 that all open windows will end up in a single container in default layout
856 after the restart. To exit i3 properly, you can use the +exit+ command,
857 however you don’t need to (simply killing your X session is fine as well).
858
859 *Examples*:
860 ----------------------------
861 bindsym Mod1+Shift+r restart
862 bindsym Mod1+Shift+w reload
863 bindsym Mod1+Shift+e exit
864 ----------------------------
865
866 [[multi_monitor]]
867
868 == Multiple monitors
869
870 As you can see in the goal list on the website, i3 was specifically developed
871 with support for multiple monitors in mind. This section will explain how to
872 handle multiple monitors.
873
874 When you have only one monitor, things are simple. You usually start with
875 workspace 1 on your monitor and open new ones as you need them.
876
877 When you have more than one monitor, each monitor will get an initial
878 workspace.  The first monitor gets 1, the second gets 2 and a possible third
879 would get 3. When you switch to a workspace on a different monitor, i3 will
880 switch to that monitor and then switch to the workspace. This way, you don’t
881 need shortcuts to switch to a specific monitor, and you don’t need to remember
882 where you put which workspace. New workspaces will be opened on the currently
883 active monitor.  It is not possible to have a monitor without a workspace.
884
885 The idea of making workspaces global is based on the observation that most
886 users have a very limited set of workspaces on their additional monitors.
887 They are often used for a specific task (browser, shell) or for monitoring
888 several things (mail, IRC, syslog, …). Thus, using one workspace on one monitor
889 and "the rest" on the other monitors often makes sense. However, as you can
890 create an unlimited number of workspaces in i3 and tie them to specific
891 screens, you can have the "traditional" approach of having X workspaces per
892 screen by changing your configuration (using modes, for example).
893
894 === Configuring your monitors
895
896 To help you get going if you have never used multiple monitors before, here is
897 a short overview of the xrandr options which will probably be of interest to
898 you. It is always useful to get an overview of the current screen configuration.
899 Just run "xrandr" and you will get an output like the following:
900 -------------------------------------------------------------------------------
901 $ xrandr
902 Screen 0: minimum 320 x 200, current 1280 x 800, maximum 8192 x 8192
903 VGA1 disconnected (normal left inverted right x axis y axis)
904 LVDS1 connected 1280x800+0+0 (normal left inverted right x axis y axis) 261mm x 163mm
905    1280x800       60.0*+   50.0
906    1024x768       85.0     75.0     70.1     60.0
907    832x624        74.6
908    800x600        85.1     72.2     75.0     60.3     56.2
909    640x480        85.0     72.8     75.0     59.9
910    720x400        85.0
911    640x400        85.1
912    640x350        85.1
913 --------------------------------------------------------------------------------------
914
915 Several things are important here: You can see that +LVDS1+ is connected (of
916 course, it is the internal flat panel) but +VGA1+ is not. If you have a monitor
917 connected to one of the ports but xrandr still says "disconnected", you should
918 check your cable, monitor or graphics driver.
919
920 The maximum resolution you can see at the end of the first line is the maximum
921 combined resolution of your monitors. By default, it is usually too low and has
922 to be increased by editing +/etc/X11/xorg.conf+.
923
924 So, say you connected VGA1 and want to use it as an additional screen:
925 -------------------------------------------
926 xrandr --output VGA1 --auto --left-of LVDS1
927 -------------------------------------------
928 This command makes xrandr try to find the native resolution of the device
929 connected to +VGA1+ and configures it to the left of your internal flat panel.
930 When running "xrandr" again, the output looks like this:
931 -------------------------------------------------------------------------------
932 $ xrandr
933 Screen 0: minimum 320 x 200, current 2560 x 1024, maximum 8192 x 8192
934 VGA1 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 338mm x 270mm
935    1280x1024      60.0*+   75.0
936    1280x960       60.0
937    1152x864       75.0
938    1024x768       75.1     70.1     60.0
939    832x624        74.6
940    800x600        72.2     75.0     60.3     56.2
941    640x480        72.8     75.0     66.7     60.0
942    720x400        70.1
943 LVDS1 connected 1280x800+1280+0 (normal left inverted right x axis y axis) 261mm x 163mm
944    1280x800       60.0*+   50.0
945    1024x768       85.0     75.0     70.1     60.0
946    832x624        74.6
947    800x600        85.1     72.2     75.0     60.3     56.2
948    640x480        85.0     72.8     75.0     59.9
949    720x400        85.0
950    640x400        85.1
951    640x350        85.1
952 -------------------------------------------------------------------------------
953 Please note that i3 uses exactly the same API as xrandr does, so it will see
954 only what you can see in xrandr.
955
956 See also <<presentations>> for more examples of multi-monitor setups.
957
958 === Interesting configuration for multi-monitor environments
959
960 There are several things to configure in i3 which may be interesting if you
961 have more than one monitor:
962
963 1. You can specify which workspace should be put on which screen. This
964    allows you to have a different set of workspaces when starting than just
965    1 for the first monitor, 2 for the second and so on. See
966    <<workspace_screen>>.
967 2. If you want some applications to generally open on the bigger screen
968    (MPlayer, Firefox, …), you can assign them to a specific workspace, see
969    <<assign_workspace>>.
970 3. If you have many workspaces on many monitors, it might get hard to keep
971    track of which window you put where. Thus, you can use vim-like marks to
972    quickly switch between windows. See <<vim_like_marks>>.
973
974 == i3 and the rest of your software world
975
976 === Displaying a status line
977
978 A very common thing amongst users of exotic window managers is a status line at
979 some corner of the screen. It is an often superior replacement to the widget
980 approach you have in the task bar of a traditional desktop environment.
981
982 If you don’t already have your favorite way of generating such a status line
983 (self-written scripts, conky, …), then i3status is the recommended tool for
984 this task. It was written in C with the goal of using as few syscalls as
985 possible to reduce the time your CPU is woken up from sleep states.
986
987 Regardless of which application you use to generate the status line, you
988 want to make sure that the application does one of the following things:
989
990 1. Register as a dock window using EWMH hints. This will make i3 position the
991    window above the workspace bar but below every other client. This is the
992    recommended way, but in case of dzen2, for example, you need to check out
993    the source of dzen2 from subversion, as the -dock option is not present
994    in the released versions.
995 2. Overlay the internal workspace bar. This method will not waste any space
996    on the workspace bar, however, it is rather hackish. Just configure
997    the output window to be over the workspace bar (say -x 200 and -y 780 if
998    your screen is 800 px height).
999
1000 The planned solution for this problem is to make the workspace bar optional
1001 and switch to a third party application completely (dzen2 for example)
1002 which will then contain the workspace bar.
1003
1004 === Giving presentations (multi-monitor)
1005
1006 When giving a presentation, you typically want the audience to see what you see
1007 on your screen and then go through a series of slides (if the presentation is
1008 simple). For more complex presentations, you might want to have some notes
1009 which only you can see on your screen, while the audience can only see the
1010 slides.
1011
1012 [[presentations]]
1013 ==== Case 1: everybody gets the same output
1014 This is the simple case. You connect your computer to the video projector,
1015 turn on both (computer and video projector) and configure your X server to
1016 clone the internal flat panel of your computer to the video output:
1017 -----------------------------------------------------
1018 xrandr --output VGA1 --mode 1024x768 --same-as LVDS1
1019 -----------------------------------------------------
1020 i3 will then use the lowest common subset of screen resolutions, the rest of
1021 your screen will be left untouched (it will show the X background). So, in
1022 our example, this would be 1024x768 (my notebook has 1280x800).
1023
1024 ==== Case 2: you can see more than your audience
1025 This case is a bit harder. First of all, you should configure the VGA output
1026 somewhere near your internal flat panel, say right of it:
1027 -----------------------------------------------------
1028 xrandr --output VGA1 --mode 1024x768 --right-of LVDS1
1029 -----------------------------------------------------
1030 Now, i3 will put a new workspace (depending on your settings) on the new screen
1031 and you are in multi-monitor mode (see <<multi_monitor>>).
1032
1033 Because i3 is not a compositing window manager, there is no ability to
1034 display a window on two screens at the same time. Instead, your presentation
1035 software needs to do this job (that is, open a window on each screen).