mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-18 16:10:22 -07:00
21 lines
526 B
Haskell
21 lines
526 B
Haskell
----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : Main
|
|
-- Copyright : (c) Spencer Janssen 2007
|
|
-- License : BSD3-style (see LICENSE)
|
|
--
|
|
-- Maintainer : sjanssen@cse.unl.edu
|
|
-- Stability : unstable
|
|
-- Portability : not portable, uses mtl, X11, posix
|
|
--
|
|
-- xmonad, a minimalist, tiling window manager for X11
|
|
--
|
|
-----------------------------------------------------------------------------
|
|
|
|
module Main (main) where
|
|
|
|
import XMonad
|
|
|
|
main :: IO ()
|
|
main = xmonad def
|