Created
October 21, 2014 15:08
-
-
Save rileyrg/b7862cddbcac3be7d046 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myConfig p = def { | |
manageHook = myManageHook <+> namedScratchpadManageHook scratchpads <+> manageDocks | |
,logHook = fadeWindowsLogHook myFadeHook <+> dynamicLogWithPP xmobarPP { | |
ppOutput = hPutStrLn p | |
} <+> ewmhDesktopsLogHook | |
,handleEventHook = fadeWindowsEventHook | |
,layoutHook = myLayout | |
,startupHook = myStartUpHook | |
,workspaces= myWorkSpaces | |
,modMask = mod4Mask | |
,focusFollowsMouse = False | |
,terminal = myTerminal | |
} | |
main :: IO () | |
main = do | |
xm <- spawnPipe "xmobar" | |
xmonad $ myConfig xm | |
`additionalKeysP` myKeys | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment