From 9d718cd31b28f6799fd2dd25ffe17d9032dadbda Mon Sep 17 00:00:00 2001 From: Don Stewart Date: Thu, 21 Jun 2007 05:36:13 +0200 Subject: minor tweaks, ideas from joachim.fasting@ darcs-hash:20070621033613-9c5c1-51e25d524c5a54aafbab14f55b3b155c558195d2 --- Operations.hs | 2 +- XMonad.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Operations.hs b/Operations.hs index a40b2a0..cd20c47 100644 --- a/Operations.hs +++ b/Operations.hs @@ -99,7 +99,7 @@ view = windows . W.view modifyGap :: (Int -> (Int,Int,Int,Int) -> (Int,Int,Int,Int)) -> X () modifyGap f = do XState { windowset = ws, statusGaps = gaps } <- get - let n = fromIntegral $ W.screen (W.current ws) + let n = fromIntegral . W.screen $ W.current ws (a,i:b) = splitAt n gaps modify $ \s -> s { statusGaps = a ++ f n i : b } refresh diff --git a/XMonad.hs b/XMonad.hs index 6242b40..7914782 100644 --- a/XMonad.hs +++ b/XMonad.hs @@ -182,7 +182,7 @@ spawn x = io $ do -- current window state. restart :: Maybe String -> Bool -> X () restart mprog resume = do - prog <- maybe (io $ getProgName) return mprog + prog <- maybe (io getProgName) return mprog args <- if resume then gets (("--resume":) . return . show . windowset) else return [] catchIO (executeFile prog True args Nothing) -- cgit v1.2.3