2009-02-15 18:51:19 +01:00
|
|
|
|
i3(1)
|
|
|
|
|
=====
|
|
|
|
|
Michael Stapelberg <michael+i3@stapelberg.de>
|
2011-07-31 23:34:28 +02:00
|
|
|
|
v4.0, July 2011
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
|
|
|
|
== NAME
|
|
|
|
|
|
|
|
|
|
i3 - an improved dynamic, tiling window manager
|
|
|
|
|
|
|
|
|
|
== SYNOPSIS
|
|
|
|
|
|
2010-02-13 19:58:43 +01:00
|
|
|
|
i3 [-a] [-c configfile] [-C] [-d <loglevel>] [-v] [-V]
|
2009-05-26 17:09:34 +02:00
|
|
|
|
|
|
|
|
|
== OPTIONS
|
|
|
|
|
|
|
|
|
|
-a::
|
|
|
|
|
Disables autostart.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
2010-02-13 19:58:43 +01:00
|
|
|
|
-c::
|
|
|
|
|
Specifies an alternate configuration file path.
|
|
|
|
|
|
|
|
|
|
-C::
|
|
|
|
|
Check the configuration file for validity and exit.
|
|
|
|
|
|
|
|
|
|
-d::
|
|
|
|
|
Specifies the debug loglevel. To see the most output, use -d all.
|
|
|
|
|
|
|
|
|
|
-v::
|
|
|
|
|
Display version number (and date of the last commit).
|
|
|
|
|
|
|
|
|
|
-V::
|
|
|
|
|
Be verbose.
|
|
|
|
|
|
2009-02-15 18:51:19 +01:00
|
|
|
|
== DESCRIPTION
|
|
|
|
|
|
|
|
|
|
=== INTRODUCTION
|
|
|
|
|
|
2009-02-25 01:18:07 +01:00
|
|
|
|
i3 was created because wmii, our favorite window manager at the time, didn’t
|
2010-03-15 22:41:39 +01:00
|
|
|
|
provide some features we wanted (multi-monitor done right, for example), had
|
|
|
|
|
some bugs, didn’t progress since quite some time and wasn’t easy to hack at all
|
2009-02-25 01:18:07 +01:00
|
|
|
|
(source code comments/documentation completely lacking). Still, we think the
|
|
|
|
|
wmii developers and contributors did a great job. Thank you for inspiring us to
|
|
|
|
|
create i3.
|
|
|
|
|
|
|
|
|
|
Please be aware that i3 is primarily targeted at advanced users and developers.
|
|
|
|
|
|
2010-03-27 16:05:46 +01:00
|
|
|
|
=== IMPORTANT NOTE TO nVidia BINARY DRIVER USERS
|
|
|
|
|
|
|
|
|
|
If you are using the nVidia binary graphics driver (also known as 'blob')
|
2011-07-31 23:34:28 +02:00
|
|
|
|
you need to use the +--force-xinerama+ flag (in your ~/.xsession) when starting
|
2010-03-27 16:05:46 +01:00
|
|
|
|
i3, like so:
|
|
|
|
|
|
|
|
|
|
----------------------------------------------
|
|
|
|
|
exec i3 --force-xinerama -V >>~/.i3/i3log 2>&1
|
|
|
|
|
----------------------------------------------
|
|
|
|
|
|
|
|
|
|
See also docs/multi-monitor for the full explanation.
|
|
|
|
|
|
2009-02-15 18:51:19 +01:00
|
|
|
|
=== TERMINOLOGY
|
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Tree::
|
|
|
|
|
i3 keeps your layout in a tree data structure.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Window::
|
|
|
|
|
An X11 window, like the Firefox browser window or a terminal emulator.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Split container::
|
|
|
|
|
A split container contains multiple other split containers or windows.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
+
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Containers can be used in various layouts. The default mode is called "default"
|
2010-03-15 22:41:39 +01:00
|
|
|
|
and just resizes each client equally so that it fits.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
|
|
|
|
Workspace::
|
2011-07-31 23:34:28 +02:00
|
|
|
|
A workspace is a set of containers. Other window managers call this "Virtual
|
|
|
|
|
Desktops".
|
2009-02-15 18:51:19 +01:00
|
|
|
|
+
|
2010-03-15 22:41:39 +01:00
|
|
|
|
In i3, each workspace is assigned to a specific virtual screen. By default,
|
|
|
|
|
screen 1 has workspace 1, screen 2 has workspace 2 and so on… However, when you
|
|
|
|
|
create a new workspace (by simply switching to it), it’ll be assigned the
|
|
|
|
|
screen you are currently on.
|
|
|
|
|
|
|
|
|
|
Output::
|
|
|
|
|
Using XRandR, you can have an X11 screen spanning multiple real monitors.
|
|
|
|
|
Furthermore, you can set them up in cloning mode or with positions (monitor 1
|
|
|
|
|
is left of monitor 2).
|
2009-02-15 18:51:19 +01:00
|
|
|
|
+
|
2010-03-15 22:41:39 +01:00
|
|
|
|
i3 uses the RandR API to query which outputs are available and which screens
|
|
|
|
|
are connected to these outputs.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
|
|
|
|
== KEYBINDINGS
|
|
|
|
|
|
2009-02-25 01:18:07 +01:00
|
|
|
|
Here is a short overview of the default keybindings:
|
|
|
|
|
|
2009-03-14 01:26:09 +01:00
|
|
|
|
j/k/l/;::
|
2009-10-26 15:13:25 +01:00
|
|
|
|
Direction keys (left, down, up, right). They are on your homerow (see the mark
|
|
|
|
|
on your "j" key). Alternatively, you can use the cursor keys.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
|
|
|
|
Mod1+<direction>::
|
|
|
|
|
Focus window in <direction>.
|
|
|
|
|
|
|
|
|
|
Mod1+Shift+<direction>::
|
|
|
|
|
Move window to <direction>.
|
|
|
|
|
|
|
|
|
|
Mod1+<number>::
|
|
|
|
|
Switch to workspace <number>.
|
|
|
|
|
|
2009-03-14 01:26:09 +01:00
|
|
|
|
Mod1+Shift+<number>::
|
|
|
|
|
Move window to workspace <number>.
|
|
|
|
|
|
2009-02-25 01:18:07 +01:00
|
|
|
|
Mod1+f::
|
|
|
|
|
Toggle fullscreen mode.
|
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Mod1+s::
|
2009-02-25 01:18:07 +01:00
|
|
|
|
Enable stacking layout for the current container.
|
|
|
|
|
|
2009-05-03 16:52:53 +02:00
|
|
|
|
Mod1+e::
|
2009-02-25 01:18:07 +01:00
|
|
|
|
Enable default layout for the current container.
|
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Mod1+w::
|
|
|
|
|
Enable tabbed layout for the current container.
|
|
|
|
|
|
2009-06-21 16:14:15 +02:00
|
|
|
|
Mod1+Shift+Space::
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Toggle tiling/floating for the current container.
|
2009-06-21 16:14:15 +02:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Mod1+Space::
|
|
|
|
|
Select the first tiling container if the current container is floating and
|
|
|
|
|
vice-versa.
|
2009-06-21 16:14:15 +02:00
|
|
|
|
|
2009-03-14 22:09:36 +01:00
|
|
|
|
Mod1+Shift+q::
|
2010-03-15 22:41:39 +01:00
|
|
|
|
Kills the current window. This is equivalent to "clicking on the close button",
|
|
|
|
|
meaning a polite request to the application to close this window. For example,
|
|
|
|
|
Firefox will save its session upon such a request. If the application does not
|
|
|
|
|
support that, the window will be killed and it depends on the application what
|
|
|
|
|
happens.
|
2009-03-14 22:09:36 +01:00
|
|
|
|
|
2009-03-14 21:31:22 +01:00
|
|
|
|
Mod1+Shift+r::
|
2011-07-31 23:34:28 +02:00
|
|
|
|
Restarts i3 in place. Your layout will be preserved.
|
2009-03-14 21:31:22 +01:00
|
|
|
|
|
|
|
|
|
Mod1+Shift+e::
|
|
|
|
|
Exits i3.
|
|
|
|
|
|
2009-02-25 01:18:07 +01:00
|
|
|
|
== FILES
|
|
|
|
|
|
2010-03-15 22:41:39 +01:00
|
|
|
|
=== \~/.i3/config (or ~/.config/i3/config)
|
2009-02-25 01:18:07 +01:00
|
|
|
|
|
2010-03-15 22:41:39 +01:00
|
|
|
|
When starting, i3 looks for configuration files in the following order:
|
2009-03-04 16:06:39 +01:00
|
|
|
|
|
2010-03-16 00:12:01 +01:00
|
|
|
|
1. ~/.config/i3/config (or $XDG_CONFIG_HOME/i3/config if set)
|
|
|
|
|
2. /etc/xdg/i3/config (or $XDG_CONFIG_DIRS/i3/config if set)
|
|
|
|
|
3. ~/.i3/config
|
|
|
|
|
4. /etc/i3/config
|
2009-02-25 01:18:07 +01:00
|
|
|
|
|
2010-03-15 22:41:39 +01:00
|
|
|
|
You can specify a custom path using the -c option.
|
2009-02-25 01:18:07 +01:00
|
|
|
|
|
|
|
|
|
.Sample configuration
|
|
|
|
|
-------------------------------------------------------------
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# i3 config file (v4)
|
|
|
|
|
|
|
|
|
|
# font for window titles. ISO 10646 = Unicode
|
2009-03-08 00:51:38 +01:00
|
|
|
|
font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
2009-02-25 01:18:07 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# use Mouse+Mod1 to drag floating windows to their wanted position
|
|
|
|
|
floating_modifier Mod1
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# start a terminal
|
|
|
|
|
bindsym Mod1+Return exec /usr/bin/urxvt
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# kill focused window
|
|
|
|
|
bindsym Mod1+Shift+q kill
|
2009-03-14 22:09:36 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# start dmenu (a program launcher)
|
|
|
|
|
bindsym Mod1+d exec /usr/bin/dmenu_run
|
2009-02-26 22:36:07 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# change focus
|
|
|
|
|
bindsym Mod1+j focus left
|
|
|
|
|
bindsym Mod1+k focus down
|
|
|
|
|
bindsym Mod1+l focus up
|
|
|
|
|
bindsym Mod1+semicolon focus right
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# alternatively, you can use the cursor keys:
|
|
|
|
|
bindsym Mod1+Left focus left
|
|
|
|
|
bindsym Mod1+Down focus down
|
|
|
|
|
bindsym Mod1+Up focus up
|
|
|
|
|
bindsym Mod1+Right focus right
|
2009-02-26 22:36:07 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# move focused window
|
|
|
|
|
bindsym Mod1+Shift+j move left
|
|
|
|
|
bindsym Mod1+Shift+k move down
|
|
|
|
|
bindsym Mod1+Shift+l move up
|
|
|
|
|
bindsym Mod1+Shift+semicolon move right
|
2009-03-14 21:31:22 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# alternatively, you can use the cursor keys:
|
|
|
|
|
bindsym Mod1+Shift+Left move left
|
|
|
|
|
bindsym Mod1+Shift+Down move down
|
|
|
|
|
bindsym Mod1+Shift+Up move up
|
|
|
|
|
bindsym Mod1+Shift+Right move right
|
2009-02-26 22:36:07 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# split in horizontal orientation
|
|
|
|
|
bindsym Mod1+h split h
|
2009-05-03 16:52:53 +02:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# split in vertical orientation
|
|
|
|
|
bindsym Mod1+v split v
|
2009-05-03 16:52:53 +02:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# enter fullscreen mode for the focused container
|
|
|
|
|
bindsym Mod1+f fullscreen
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# change container layout (stacked, tabbed, default)
|
|
|
|
|
bindsym Mod1+s layout stacking
|
|
|
|
|
bindsym Mod1+w layout tabbed
|
|
|
|
|
bindsym Mod1+e layout default
|
2009-06-21 16:14:15 +02:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# toggle tiling / floating
|
|
|
|
|
bindsym Mod1+Shift+space floating toggle
|
2009-06-21 16:14:15 +02:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# change focus between tiling / floating windows
|
|
|
|
|
bindsym Mod1+space focus mode_toggle
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# focus the parent container
|
|
|
|
|
bindsym Mod1+a focus parent
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# focus the child container
|
|
|
|
|
#bindsym Mod1+d focus child
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# switch to workspace
|
|
|
|
|
bindsym Mod1+1 workspace 1
|
|
|
|
|
bindsym Mod1+2 workspace 2
|
|
|
|
|
# ..
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# move focused container to workspace
|
|
|
|
|
bindsym Mod1+Shift+1 move workspace 1
|
|
|
|
|
bindsym Mod1+Shift+2 move workspace 2
|
|
|
|
|
# ...
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
# reload the configuration file
|
|
|
|
|
bindsym Mod1+Shift+c reload
|
|
|
|
|
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
|
|
|
|
bindsym Mod1+Shift+r restart
|
|
|
|
|
# exit i3 (logs you out of your X session)
|
|
|
|
|
bindsym Mod1+Shift+e exit
|
2009-03-14 01:21:51 +01:00
|
|
|
|
|
2011-10-22 19:23:29 +02:00
|
|
|
|
# display workspace buttons plus a statusline generated by i3status
|
|
|
|
|
bar {
|
|
|
|
|
status_command i3status
|
|
|
|
|
}
|
2009-02-25 01:18:07 +01:00
|
|
|
|
-------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
=== ~/.xsession
|
|
|
|
|
|
|
|
|
|
This file is where you should configure your locales and start i3. It is run by
|
|
|
|
|
your login manager (xdm, slim, gdm, …) as soon as you login.
|
|
|
|
|
|
|
|
|
|
.Sample xsession
|
|
|
|
|
-------------------------------------------------------------
|
|
|
|
|
# Disable DPMS turning off the screen
|
2011-07-31 23:34:28 +02:00
|
|
|
|
xset -dpms
|
2009-02-25 01:18:07 +01:00
|
|
|
|
xset s off
|
2009-08-19 14:32:51 +02:00
|
|
|
|
|
2009-02-25 01:18:07 +01:00
|
|
|
|
# Disable bell
|
|
|
|
|
xset -b
|
|
|
|
|
|
2009-08-19 14:32:51 +02:00
|
|
|
|
# Enable zapping (C-A-<Bksp> kills X)
|
|
|
|
|
setxkbmap -option terminate:ctrl_alt_bksp
|
|
|
|
|
|
2009-02-25 01:18:07 +01:00
|
|
|
|
# Enforce correct locales from the beginning
|
|
|
|
|
unset LC_COLLATE
|
|
|
|
|
export LC_CTYPE=de_DE.UTF-8
|
2009-05-20 21:51:47 +02:00
|
|
|
|
export LC_TIME=de_DE.UTF-8
|
|
|
|
|
export LC_NUMERIC=de_DE.UTF-8
|
|
|
|
|
export LC_MONETARY=de_DE.UTF-8
|
2009-02-25 01:18:07 +01:00
|
|
|
|
export LC_MESSAGES=C
|
2009-05-20 21:51:47 +02:00
|
|
|
|
export LC_PAPER=de_DE.UTF-8
|
|
|
|
|
export LC_NAME=de_DE.UTF-8
|
|
|
|
|
export LC_ADDRESS=de_DE.UTF-8
|
|
|
|
|
export LC_TELEPHONE=de_DE.UTF-8
|
|
|
|
|
export LC_MEASUREMENT=de_DE.UTF-8
|
|
|
|
|
export LC_IDENTIFICATION=de_DE.UTF-8
|
2009-02-25 01:18:07 +01:00
|
|
|
|
|
2009-08-19 14:32:51 +02:00
|
|
|
|
# Use XToolkit in java applications
|
|
|
|
|
export AWT_TOOLKIT=XToolkit
|
|
|
|
|
|
2009-06-25 22:40:13 +02:00
|
|
|
|
# Set background color
|
|
|
|
|
xsetroot -solid "#333333"
|
|
|
|
|
|
2009-03-04 16:06:39 +01:00
|
|
|
|
# Enable core dumps in case something goes wrong
|
|
|
|
|
ulimit -c unlimited
|
|
|
|
|
|
|
|
|
|
# Start i3 and log to ~/.i3/logfile
|
|
|
|
|
echo "Starting at $(date)" >> ~/.i3/logfile
|
2010-03-27 16:05:46 +01:00
|
|
|
|
exec /usr/bin/i3 -V -d all >> ~/.i3/logfile
|
2009-02-25 01:18:07 +01:00
|
|
|
|
-------------------------------------------------------------
|
|
|
|
|
|
2011-01-11 04:39:48 +01:00
|
|
|
|
== ENVIRONMENT
|
|
|
|
|
|
|
|
|
|
=== I3SOCK
|
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
This variable overwrites the IPC socket path (placed in
|
|
|
|
|
/tmp/i3-%u/ipc-socket.%p by default, where %u is replaced with your UNIX
|
|
|
|
|
username and %p is replaced with i3’s PID). The IPC socket is used by external
|
|
|
|
|
programs like i3-msg(1) or i3bar(1).
|
2011-01-11 04:39:48 +01:00
|
|
|
|
|
2009-02-15 18:51:19 +01:00
|
|
|
|
== TODO
|
|
|
|
|
|
2010-03-21 01:50:10 +01:00
|
|
|
|
There is still lot of work to do. Please check our bugtracker for up-to-date
|
|
|
|
|
information about tasks which are still not finished.
|
2009-02-15 18:51:19 +01:00
|
|
|
|
|
2009-06-26 04:25:51 +02:00
|
|
|
|
== SEE ALSO
|
|
|
|
|
|
2010-03-21 01:50:10 +01:00
|
|
|
|
You should have a copy of the userguide (featuring nice screenshots/graphics
|
|
|
|
|
which is why this is not integrated into this manpage), the debugging guide,
|
|
|
|
|
and the "how to hack" guide. If you are building from source, run:
|
|
|
|
|
+make -C docs+
|
2009-06-26 04:25:51 +02:00
|
|
|
|
|
|
|
|
|
You can also access these documents online at http://i3.zekjur.net/
|
|
|
|
|
|
2011-07-31 23:34:28 +02:00
|
|
|
|
i3-input(1), i3-msg(1), i3-wsbar(1), i3-nagbar(1), i3-config-wizard(1),
|
|
|
|
|
i3-migrate-config-to-v4(1)
|
2010-01-20 22:34:25 +01:00
|
|
|
|
|
2009-02-15 18:51:19 +01:00
|
|
|
|
== AUTHOR
|
|
|
|
|
|
|
|
|
|
Michael Stapelberg and contributors
|