diff options
author | Don Stewart <dons@galois.com> | 2007-11-05 04:12:03 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2007-11-05 04:12:03 +0100 |
commit | f94cfaef066b5ef44615e9c526910b96ffa2a41e (patch) | |
tree | a86b60d7f8059c4bf4c5ab77c964a09b93d6e5df /XMonad | |
parent | b7068e1a38062df46bf2cfc158ecd6c13fb6f74b (diff) | |
download | metatile-f94cfaef066b5ef44615e9c526910b96ffa2a41e.tar metatile-f94cfaef066b5ef44615e9c526910b96ffa2a41e.zip |
makeMain -> xmonad
darcs-hash:20071105031203-cba2c-0bf3d2d6e186ab307457f99b5b73afd333802e45
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Core.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs index ff64457..edf7530 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -13,7 +13,7 @@ -- ----------------------------------------------------------------------------- -module XMonad.Core (makeMain) where +module XMonad.Core (xmonad) where import Data.Bits import qualified Data.Map as M @@ -38,8 +38,8 @@ import System.IO -- | -- The main entry point -- -makeMain :: XConfig -> IO () -makeMain xmc = do +xmonad :: XConfig -> IO () +xmonad xmc = do dpy <- openDisplay "" let dflt = defaultScreen dpy |