diff options
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 |