Difference between revisions of "Xmonad/Using xmonad in LXDE"

From HaskellWiki
Jump to navigation Jump to search
(Creating a minimal page for starters.)
 
 
(One intermediate revision by one other user not shown)
Line 14: Line 14:
 
[Session]
 
[Session]
 
window_manager=xmonad
 
window_manager=xmonad
  +
  +
If you use the panel you'll soon realise that the pager has somewhat limited usefulness. An alternative, which is more useful and takes up less space to boot, is the "Desktop number / Workspace name" panel item.
   
 
= Configuring XMonad to work with LXDE =
 
= Configuring XMonad to work with LXDE =
Line 22: Line 24:
 
main = xmonad $ desktopConfig { terminal = "lxterminal" }
 
main = xmonad $ desktopConfig { terminal = "lxterminal" }
 
</haskell>
 
</haskell>
  +
  +
= Related configurations =
  +
  +
** [[/Using xmonad in Lubuntu|using xmonad in Lubuntu]]

Latest revision as of 19:31, 28 January 2016

Xmonad-logo-small.png

XMonad

Introduction

This page is based on my very limited experience of LXDE and XMonad.

I'm assuming you are using lxsession to start LXDE.

Configuring LXDE to work with XMonad

Create the file ~/.config/lxsession/LXDE/desktop.conf with the content

[Session]
window_manager=xmonad

If you use the panel you'll soon realise that the pager has somewhat limited usefulness. An alternative, which is more useful and takes up less space to boot, is the "Desktop number / Workspace name" panel item.

Configuring XMonad to work with LXDE

A minimal XMonad configuration that works nicely with LXDE looks like this

main = xmonad $ desktopConfig { terminal = "lxterminal" }

Related configurations