diff options
Diffstat (limited to 'src/XMonad/Custom/Event.hs')
-rw-r--r-- | src/XMonad/Custom/Event.hs | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/XMonad/Custom/Event.hs b/src/XMonad/Custom/Event.hs index 745fefe..f55511d 100644 --- a/src/XMonad/Custom/Event.hs +++ b/src/XMonad/Custom/Event.hs @@ -8,18 +8,16 @@ -- module XMonad.Custom.Event - ( handleEventHook - ) where + ( handleEventHook + ) where import Data.Monoid -import XMonad hiding ( handleEventHook ) +import XMonad hiding ( handleEventHook ) import XMonad.Custom.Scratchpads import XMonad.Hooks.EwmhDesktops import XMonad.Hooks.ManageDocks import XMonad.Util.Loggers.NamedScratchpad handleEventHook :: Event -> X All -handleEventHook = mconcat [ nspTrackHook scratchpads - , docksEventHook - , fullscreenEventHook - ] +handleEventHook = + mconcat [nspTrackHook scratchpads, docksEventHook, fullscreenEventHook] |