diff options
Diffstat (limited to 'src/Main.hs')
| -rw-r--r-- | src/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main.hs b/src/Main.hs index b17f62a..0514a99 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -12,12 +12,12 @@ import System.Environment (setEnv) import Data.Monoid import Internal.XMobarLog +import Internal.Windows import Internal.Keys import Internal.Layout import Internal.Logger import Internal.DMenu (menuCommandString) import Internal.RebindKeys -import XMonad.Actions.WithAll (withAll) import qualified XMonad as X import qualified XMonad.StackSet as W @@ -89,7 +89,7 @@ windowHooks (Query readerT) config = do config { startupHook = do - withAll $ \w -> runReaderT readerT w + forAllWindows $ \w -> runReaderT readerT w startupHook config, manageHook = mappend (Query readerT >> return (Endo id)) (manageHook config) |