summaryrefslogtreecommitdiffstats
path: root/XMonad.hs
diff options
context:
space:
mode:
authorDon Stewart <dons@cse.unsw.edu.au>2007-03-12 02:23:50 +0100
committerDon Stewart <dons@cse.unsw.edu.au>2007-03-12 02:23:50 +0100
commit30b2c029e2f363fbe476e078faf0afea784935ba (patch)
treeae41b4fdca1326c1abe26071c6f422cd4b067a5d /XMonad.hs
parent9f869f9af1d82bb916cdd1deb5d4756fe07f88c0 (diff)
downloadmetatile-30b2c029e2f363fbe476e078faf0afea784935ba.tar
metatile-30b2c029e2f363fbe476e078faf0afea784935ba.zip
comments, move isRoot into XMonad
darcs-hash:20070312012350-9c5c1-1753dcb9d066d8954fe5d2f2ed8f5d06a6f976aa
Diffstat (limited to 'XMonad.hs')
-rw-r--r--XMonad.hs14
1 files changed, 12 insertions, 2 deletions
diff --git a/XMonad.hs b/XMonad.hs
index 8e03d78..24c7899 100644
--- a/XMonad.hs
+++ b/XMonad.hs
@@ -15,7 +15,9 @@
--
module XMonad (
- X, WorkSpace, XState(..),runX, withDisplay, io, spawn, trace, whenJust
+ X, WorkSpace, XState(..),runX,
+ io, withDisplay, isRoot,
+ spawn, trace, whenJust
) where
import StackSet (StackSet)
@@ -49,11 +51,19 @@ newtype X a = X (StateT XState IO a)
runX :: XState -> X a -> IO ()
runX st (X a) = runStateT a st >> return ()
+-- ---------------------------------------------------------------------
+-- Convenient wrappers to state
+
-- | Run a monad action with the current display settings
withDisplay :: (Display -> X ()) -> X ()
withDisplay f = gets display >>= f
-------------------------------------------------------------------------
+-- | True if the given window is the root window
+isRoot :: Window -> X Bool
+isRoot w = liftM (w==) (gets theRoot)
+
+-- ---------------------------------------------------------------------
+-- Utilities
-- | Lift an IO action into the X monad
io :: IO a -> X a