Software:i3 (window manager)

From HandWiki
Short description: Unix window manager software

i3
I3 window manager logo.svg
I3 window manager screenshot.png
i3 with vim and terminals open
Original author(s)Michael Stapelberg
Initial releaseMarch 15, 2009; 14 years ago (2009-03-15)[1]
Written inC
Operating systemUnix-like
Size1.3 MiB[2]
TypeWindow manager
LicenseBSD-3-Clause[3]
Websitei3wm.org

i3 is a tiling window manager designed for X11, inspired by wmii and written in C.[4] It supports tiling, stacking, and tabbing layouts, which are handled manually. Its configuration is achieved via a plain text file and extending i3 is possible using its Unix domain socket and JSON based IPC interface from many programming languages.[5]

Like wmii, i3 uses a control system very similar to that of vi and Vim. By default, window focus is controlled by what the documentation refers to as the 'Mod1' key (Alt key/Windows key) in addition to the right-hand home row keys (Mod1+J,K,L,Semicolon), while window movement is controlled by the addition of the Shift key (Mod1+Shift+J,K,L,Semicolon).[6]

Design goals

i3's primary design goals are to possess well-written, documented code that encourages user contribution;[3] to use XCB instead of Xlib; to implement multi-monitor features correctly, so that each workspace is assigned to a virtual screen, and monitor additions and removals are non-destructive of windows; to implement different modes, in a manner similar to that of the text editors vi and vim; to use a tree as the abstraction (and underlying data structure) for window management; and to implement UTF-8 character encoding.

Features

i3's configuration is done via a plain text file (usually found in ~/.config/i3/config),[Note 1] which can be customized without any sophisticated programming knowledge.[6] Contrary to other popular tiling window managers, such as dwm, awesome, and xmonad, window management is left to the user in i3. Windows are held inside containers, which can be split vertically or horizontally. They can also optionally be resized. There are also options for stacking the windows, as well as tabbing them (similar to the interface that web browsers use). i3 uses dmenu as the default program launcher, but it can be replaced.[6][7] i3 also has an associated program called i3bar that displays information about the system at the bottom of the screen.[8]

i3 also supports the use of multiple monitors.[9]

Floating pop-up windows

Even though i3 is a tiling window manager, specific windows, such as password pop-ups, are not displayed as new tiles by default;[10] they are always stacked in front of tiled windows, unless in full screen mode. These floating windows can be moved and resized freely, just as they can in stacking window managers and popular desktop environments like GNOME or KDE Plasma.[7]

The authors of i3 intend floating windows to be used for pop-up windows only.[11]

Gallery

See also

References

Footnotes

  1. In Unix filesystems, "~" refers to the user's home directory.

External links