diff options
author | Don Stewart <dons@galois.com> | 2007-11-05 03:17:05 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2007-11-05 03:17:05 +0100 |
commit | dd8c36036dd1ec0a854a35e49cb890c60596bc3c (patch) | |
tree | 7ac045604e4928c4805a9009a926b1c03b9cf068 /XMonad | |
parent | caba2a199f3089663a73b0a1f4fd094bf05c9212 (diff) | |
download | metatile-dd8c36036dd1ec0a854a35e49cb890c60596bc3c.tar metatile-dd8c36036dd1ec0a854a35e49cb890c60596bc3c.zip |
EventLoop -> Core, DefaultConfig -> Config
darcs-hash:20071105021705-cba2c-fc7ffc11ffa9a5397cc40a5dba530ca620018f25
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Config.hs (renamed from XMonad/DefaultConfig.hs) | 4 | ||||
-rw-r--r-- | XMonad/Core.hs (renamed from XMonad/EventLoop.hs) | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/XMonad/DefaultConfig.hs b/XMonad/Config.hs index a13d68a..5021328 100644 --- a/XMonad/DefaultConfig.hs +++ b/XMonad/Config.hs @@ -1,7 +1,7 @@ {-# OPTIONS -fno-warn-missing-signatures #-} ----------------------------------------------------------------------------- -- | --- Module : DefaultConfig.hs +-- Module : XMonad.Config -- Copyright : (c) Spencer Janssen 2007 -- License : BSD3-style (see LICENSE) -- @@ -15,7 +15,7 @@ -- ------------------------------------------------------------------------ -module XMonad.DefaultConfig (defaultConfig) where +module XMonad.Config (defaultConfig) where -- -- Useful imports diff --git a/XMonad/EventLoop.hs b/XMonad/Core.hs index eba8e9d..ff64457 100644 --- a/XMonad/EventLoop.hs +++ b/XMonad/Core.hs @@ -1,7 +1,7 @@ {-# LANGUAGE MultiParamTypeClasses #-} ---------------------------------------------------------------------------- -- | --- Module : EventLoop.hs +-- Module : Core.hs -- Copyright : (c) Spencer Janssen 2007 -- License : BSD3-style (see LICENSE) -- @@ -13,7 +13,7 @@ -- ----------------------------------------------------------------------------- -module XMonad.EventLoop (makeMain) where +module XMonad.Core (makeMain) where import Data.Bits import qualified Data.Map as M |