aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-04-30 18:16:35 +0200
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-04-30 18:16:35 +0200
commitfd5c6b14dbaca51b3ddfb7894dbbe8aa2ecc879b (patch)
tree1e2581f99fe0511da993de5c17ad038d6f323911
parent88bb6f2a3fcab181d1b912b3b7bbf77074f051be (diff)
downloadxmonad-fd5c6b14dbaca51b3ddfb7894dbbe8aa2ecc879b.tar.gz
xmonad-fd5c6b14dbaca51b3ddfb7894dbbe8aa2ecc879b.tar.xz
xmonad-fd5c6b14dbaca51b3ddfb7894dbbe8aa2ecc879b.zip
Comment only
darcs-hash:20070430161635-a5988-ee0abcdeff2aa92df2d593de488797015c0fc7e7.gz
-rw-r--r--XMonad.hs24
1 files changed, 12 insertions, 12 deletions
diff --git a/XMonad.hs b/XMonad.hs
index 69072b6..44cc017 100644
--- a/XMonad.hs
+++ b/XMonad.hs
@@ -40,18 +40,18 @@ data XState = XState
}
data XConf = XConf
- { display :: Display -- ^ the X11 display
-
- , theRoot :: !Window -- ^ the root window
- , wmdelete :: !Atom -- ^ window deletion atom
- , wmprotocols :: !Atom -- ^ wm protocols atom
- , dimensions :: !(Int,Int) -- ^ dimensions of the screen,
- -- used for hiding windows
-
- , xineScreens :: ![Rectangle] -- ^ dimensions of each screen
- , defaultLayoutDesc :: !LayoutDesc -- ^ default layout
- , normalBorder :: !Color -- ^ border color of unfocused windows
- , focusedBorder :: !Color -- ^ border color of the focused window
+ { display :: Display -- ^ the X11 display
+
+ , theRoot :: !Window -- ^ the root window
+ , wmdelete :: !Atom -- ^ window deletion atom
+ , wmprotocols :: !Atom -- ^ wm protocols atom
+ , dimensions :: !(Int,Int) -- ^ dimensions of the screen,
+ -- used for hiding windows
+
+ , xineScreens :: ![Rectangle] -- ^ dimensions of each screen
+ , defaultLayoutDesc :: !LayoutDesc -- ^ default layout
+ , normalBorder :: !Color -- ^ border color of unfocused windows
+ , focusedBorder :: !Color -- ^ border color of the focused window
}
type WindowSet = StackSet WorkspaceId ScreenId Window