Xmonad/Using xmonad in LXDE
From HaskellWiki
< Xmonad
1 Introduction
This page is based on my very limited experience of LXDE and XMonad.
I'm assuming you are using lxsession to start LXDE.
2 Configuring LXDE to work with XMonad
Create the file ~/.config/lxsession/LXDE/desktop.conf with the content
[Session] window_manager=xmonad
3 Configuring XMonad to work with LXDE
A minimal XMonad configuration that works nicely with LXDE looks like this
main = xmonad $ desktopConfig { terminal = "lxterminal" }
