xmonad

xmonad

XMonad in tiling mode with two URXVT terminals and pcmanFM open

xmonad in tiling mode
Original author(s) Spencer Janssen, Don Stewart, Jason Creighton
Initial release March 6, 2007 (2007-03-06)[1]
Stable release
0.12[2] / December 21, 2015 (2015-12-21)
Preview release
latest Darcs revision / (snapshot)
Development status Stable
Written in Haskell
Operating system POSIX-compatible
Platform Cross-platform; requires the X Window System and GHC
Size 56 KB (source code)[3]
Available in English
Type Window manager
License BSD-3
Website www.xmonad.org

xmonad is a dynamic window manager (tiling) for the X Window System, written in the functional programming language Haskell.

Begun in March 2007, it is similar to dwm, larswm, StumpWM and other members of the tiling window manager family in that it arranges windows in a nonoverlapping pattern and strives to make it possible for the user to productively manage windows without the use of the mouse. xmonad is packaged and distributed on a wide range of Unix-like operating systems, such as a large number of Linux distributions, and BSD systems.

While originally a clone of dwm (derivative in areas such as default keybindings), xmonad now supports features not available to dwm users[4][5] such as per-workspace layout, tiling reflection, state preservation, layout mirroring, GNOME support and per-screen status bars; it can be customised by modifying an external configuration file and 'reloaded' while running.[6] xmonad features have begun to influence other tiling window managers - dwm has borrowed "urgency hooks" from xmonad,[7] has also included Xinerama support (for multihead displays) with release 4.8, and patches exist to reimplement xmonad's Fibonacci layout.[8]

Extensions to the core system, including emulation of other window managers and unusual layout algorithms, such as window tiling based on the Fibonacci spiral, have been implemented by the active community[9] and are available as a library.[10]

In addition to obviating the need for the mouse, the xmonad developers make heavy use of semi-formal methods and program derivation for improving reliability and enabling a total line of code count less than 1200, as of version 0.7; window manager properties (such as the behavior of window focus) are checked through use of QuickCheck. This emphasis makes xmonad unusual in a number of ways; besides being the first window manager written in Haskell, it is also the first to use the zipper data structure for automatically managing focus, and its core has been proven to be safe with respect to pattern matches,[11] contributing further to reliability. The developers write:

"xmonad is a tiling window manager for the X Window system, implemented, configured and dynamically extensible in Haskell. This demonstration presents the case that software dominated by side effects can be developed with the precision and efficiency we expect from Haskell by utilising purely functional data structures, an expressive type system, extended static checking and property-based testing. In addition, we describe the use of Haskell as an application configuration and extension language."[12]

It makes use of Haskell features and tools such as: QuickCheck, GHC extensions like pattern guards, monads, monad transformers, zippers, and the Cabal packaging system, in addition to Haskell bindings to Xlib and xft fonts (with rebinding to XCB planned when the Haskell bindings are released).

xmonad's xinerama support: tiling on three screens simultaneously (with Kinesis keyboard).

See also

References

  1. Earliest known release
  2. xmonad-0.12, HackageDB
  3. "xmonad : download". suckless.org. Retrieved December 17, 2012.
  4. "Keyboard-Driven Environments Open a New Window". OSnews. 2007-05-31. Retrieved 2007-05-31.
  5. "xmonad 0.4 Released". OSnews. 2007-10-19. Retrieved 2007-12-23.
  6. Through a combination of swiftly re-compiling and then execing the new xmonad binary; see "Haskell Weekly News: April 27, 2007". Haskell Weekly News. 2007-04-27. Retrieved 2007-05-23.
  7. See the developer discussion on the dwm mailing list
  8. Suckless.org: Fibonacci layouts patch to dwm
  9. xmonad users generate significant traffic in the #xmonad IRC channel and the xmonad mailing list; in addition, there are a significant number of commits to the extension library from non-core devs (see the xmonad statistic page)
  10. "xmonad: Contributed code". xmonad.org. 2007-05-22. Retrieved 2007-05-23.
  11. "Does xmonad crash? On proving pattern coverage in xmonad with Catch"; "Preconditions on XMonad"; see also "Detecting pattern-match failures in Haskell"
  12. Stewart & Janssen, 2007
Notes
This article is issued from Wikipedia - version of the 8/17/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.