diff options
author | Azat Bahawi <azahi@teknik.io> | 2020-11-20 23:13:14 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2020-11-20 23:13:14 +0300 |
commit | 4181e8c47883dc456db4310f42212262d5a8ad1a (patch) | |
tree | 5c4f279b290b2cd8a2ac14488bfa2e7b7df12c85 /src/XMonad/Custom/Event.hs | |
parent | Sync submodules (diff) |
bump dependencies + brittany/cabal-fmt
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] |