summaryrefslogtreecommitdiffstats
path: root/XMonad.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad.hs')
-rw-r--r--XMonad.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad.hs b/XMonad.hs
index 5ea0c0a..69072b6 100644
--- a/XMonad.hs
+++ b/XMonad.hs
@@ -36,6 +36,7 @@ import qualified Data.Map as M
data XState = XState
{ workspace :: !WindowSet -- ^ workspace list
, layoutDescs :: !(M.Map WorkspaceId LayoutDesc) -- ^ mapping of workspaces
+ -- to descriptions of their layouts
}
data XConf = XConf
@@ -49,7 +50,6 @@ data XConf = XConf
, xineScreens :: ![Rectangle] -- ^ dimensions of each screen
, defaultLayoutDesc :: !LayoutDesc -- ^ default layout
- -- to descriptions of their layouts
, normalBorder :: !Color -- ^ border color of unfocused windows
, focusedBorder :: !Color -- ^ border color of the focused window
}