aboutsummaryrefslogtreecommitdiffstats
path: root/Main.hs
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-10-05 02:00:31 +0200
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-10-05 02:00:31 +0200
commitd26efdf84f8cc97f1e749463234e0b6b23577ed4 (patch)
treec5a350a84c25f3199b7aceccf8b7534de7e69047 /Main.hs
parent51193b17be6aeec0e81bd19a4db102798c8d0c7d (diff)
downloadxmonad-d26efdf84f8cc97f1e749463234e0b6b23577ed4.tar.gz
xmonad-d26efdf84f8cc97f1e749463234e0b6b23577ed4.tar.xz
xmonad-d26efdf84f8cc97f1e749463234e0b6b23577ed4.zip
Make WindowSet serialization robust to layout changes
darcs-hash:20071005000031-a5988-c8ab82b01a70dc7526fa64c71edc7673dbfab4db.gz
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs13
1 files changed, 10 insertions, 3 deletions
diff --git a/Main.hs b/Main.hs
index 414a283..a149d34 100644
--- a/Main.hs
+++ b/Main.hs
@@ -52,9 +52,16 @@ main = do
let initialWinset = new defaultLayout workspaces $ zipWith SD xinesc gaps
- winset | ("--resume" : s : _) <- args
- , [(x, "")] <- reads s = W.ensureTags defaultLayout workspaces x
- | otherwise = initialWinset
+ maybeRead s = case reads s of
+ [(x, "")] -> Just x
+ _ -> Nothing
+
+ winset = fromMaybe initialWinset $ do
+ ("--resume" : s : _) <- return args
+ ws <- maybeRead s
+ return . W.ensureTags defaultLayout workspaces
+ $ W.mapLayout (fromMaybe defaultLayout . maybeRead) ws
+
gaps = take (length xinesc) $ defaultGaps ++ repeat (0,0,0,0)
cf = XConf