Difference between revisions of "Xmonad/Config archive/Andrea Rossato's xmonad.hs"

From HaskellWiki
Jump to navigation Jump to search
m (removed useless imports)
(fix config to compile)
 
Line 1: Line 1:
 
<haskell>
 
<haskell>
 
 
module Main (main) where
 
module Main (main) where
   
Line 7: Line 6:
   
 
main :: IO ()
 
main :: IO ()
main = xmonad arossatoConfig
+
main = xmonad =<< arossatoConfig
 
 
</haskell>
 
</haskell>

Latest revision as of 22:01, 31 October 2008

module Main (main) where

import XMonad
import XMonad.Config.Arossato (arossatoConfig)

main :: IO ()
main = xmonad =<< arossatoConfig