diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-12-08 00:35:35 +0100 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-12-08 00:35:35 +0100 |
commit | dbc8d31375deea67237dde0e3d9ec8f27bc18a8a (patch) | |
tree | 722b3198aee864374c839845862726da8d8fed59 | |
parent | 316deb11d447eef94bfc29965fa227dc132a686b (diff) | |
download | metatile-dbc8d31375deea67237dde0e3d9ec8f27bc18a8a.tar metatile-dbc8d31375deea67237dde0e3d9ec8f27bc18a8a.zip |
Export Graphics.X11, Graphics.X11.Xlib.Extras, and various Monad stuff from XMonad
darcs-hash:20071207233535-a5988-1f309f227d3bc8161cff888c92e0ecbee1f6c5dc
-rw-r--r-- | XMonad.hs | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -18,8 +18,12 @@ module XMonad ( module XMonad.Core, module XMonad.Config, module XMonad.ManageHook, - -- module Graphics.X11.Xlib, -- conflicts with lots of extensions - (.|.) + module Graphics.X11, + module Graphics.X11.Xlib.Extras, + (.|.), + MonadState(..), gets, modify, + MonadReader(..), asks, + MonadIO(..) ) where @@ -32,4 +36,8 @@ import XMonad.ManageHook -- modules needed to get basic configuration working import Data.Bits --- import Graphics.X11.Xlib +import Graphics.X11 hiding (refreshKeyboardMapping) +import Graphics.X11.Xlib.Extras + +import Control.Monad.State +import Control.Monad.Reader |