1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
----------------------------------------------------------------------------
-- |
-- 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
|