Difference between revisions of "Xmonad/Default Desktop Environment Integration"

From HaskellWiki
Jump to navigation Jump to search
(Created page for common Config.Desktop usage)
 
 
Line 1: Line 1:
= Using Desktop Environment Config Modules =
 
 
The following modules from xmonad-contrib make it easy to start with good basic defaults to work within the given desktop environment. They set up better communication between xmonad and taskbars or status bars through EWMH's, allow gap toggling, and rebind run and logout keys to sensible desktop environment defaults.
 
 
You will still need to set up your session management and tell your desktop environment (DE) to use xmonad as described in the DE specific documents on [[Xmonad]], but the ff. will take care of getting xmonad's part of the puzzle working with a useful default configuration.
 
 
Start with the appropriate version below in <code>~/.xmonad/xmonad.hs</code> then start or restart xmonad.hs to have xmonad recompile the binary in <code>~/.xmonad/</code> to use your new settings.
 
 
XMonad.Config.Xfce
 
<haskell>
 
import XMonad
 
import XMonad.Config.Xfce
 
 
main = xmonad xfceConfig
 
</haskell>
 
 
XMonad.Config.Gnome
 
<haskell>
 
import XMonad
 
import XMonad.Config.Gnome
 
 
main = xmonad gnomeConfig
 
</haskell>
 
 
XMonad.Config.Kde
 
<haskell>
 
import XMonad
 
import XMonad.Config.Kde
 
 
main = xmonad kdeConfig
 
</haskell>
 

Latest revision as of 03:01, 11 September 2008