Rahul Sharma (Editor)

I3 (window manager)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Original author(s)
  
Michael Stapelberg

Operating system
  
Unix-like

Written in
  
C

I3 (window manager)

Initial release
  
March 15, 2009; 8 years ago (2009-03-15)

Stable release
  
4.13 / November 8, 2016; 4 months ago (2016-11-08)

Repository
  
https://github.com/i3/i3, git://github.com/i3/i3

i3 is a tiling window manager designed for X11, inspired by wmii, and written in C. It supports tiling, stacking, and tabbing layouts, which it handles dynamically. Configuration is achieved via plain text file and extending i3 is possible using its Unix domain socket and JSON based IPC interface from many programming languages.

Contents

Like wmii, i3 uses a control system very similar to vi. By default, window focus is controlled by the 'Mod1' (Alt key/Win key) plus the right hand home row keys (Mod1+J,K,L,;), while window movement is controlled by the addition of the Shift key (Mod1+Shift+J,K,L,;).

Design goals

  • Possess well written, documented code, that encourages user contribution.
  • Use XCB instead of Xlib.
  • 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.
  • Implement different modes, similar to vi and emacs, the text editor. That is, keys have different functions depending on the mode the window manager is in.
  • Use a tree as the abstraction (and underlying data structure) for window management.
  • Implement UTF-8 character encoding.
  • Compared to other tiling window managers

  • The configuration is done via a plain text file, so i3 can be customized without knowledge of programming.
  • 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 now use).
  • 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: they are stacked in front of tiled windows. These floating windows can be moved and resized freely, just like in popular desktop environments like GNOME or KDE.

    Floating windows are intended by the authors of i3 to be used for pop-up windows only.

    References

    I3 (window manager) Wikipedia