Skip to content

Instantly share code, notes, and snippets.

@moonlightdrive
Created April 2, 2017 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moonlightdrive/6141bdc58295c162b7214a844a5bf486 to your computer and use it in GitHub Desktop.
Save moonlightdrive/6141bdc58295c162b7214a844a5bf486 to your computer and use it in GitHub Desktop.
xmonad+xfce4
import XMonad
import XMonad.Config.Xfce
import XMonad.Hooks.EwmhDesktops
import XMonad.Util.Replace(replace)
main = do
replace
xmonad $ ewmh xfceConfig
{ terminal = "xfce4-terminal --hide-menubar"
, manageHook = myManageHook <+> manageHook xfceConfig
}
myManageHook = composeAll [ className =? "Xfce4-notifyd" --> doIgnore ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment