[XMonad] Handle dock events

This commit is contained in:
2016-09-16 14:33:37 -07:00
parent 8a89798884
commit 64b0ea9ec4

View File

@@ -17,8 +17,7 @@ main = xmonad $ ewmh def
, terminal = "urxvt"
, manageHook = manageDocks <+> manageHook def
, layoutHook = myLayoutHook
-- , logHook = myLogHook topBar
, handleEventHook = handleEventHook def <+> fullscreenEventHook
, handleEventHook = docksEventHook <+> fullscreenEventHook
, startupHook = myStartup
, keys = customKeys delKeys addKeys
}
@@ -60,6 +59,5 @@ myStartup = do
spawn "copyq"
-- Local Variables:
-- eval: (progn (flycheck-mode +1) (flycheck-disable-checker 'haskell-stack-ghc))
-- flycheck-ghc-args: ("-Wno-missing-signatures")
-- End: