[XMonad] Handle dock events

This commit is contained in:
Ivan Malison 2016-09-16 14:33:37 -07:00
parent 8a89798884
commit 64b0ea9ec4
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

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: