JWM is a very fast and a very light window manager, it uses around 1.5 MB of memory
It comes by default with VL7 Light, otherwise install it:
# slapt-get -u && slapt-get -i jwm
Copy the global configuration to your configuration file:
$ cp /etc/skel/.jwmrc .jwmrc
Enter and edit the configuration file in /home:
$ nano .jwmrc
Around line 25 i insert these lines to have my favorite apps launched maximized:
<Group>
<Name>xterm</Name>
<Option>maximized</Option>
</Group>
<Group>
<Name>pcmanfm</Name>
<Option>maximized</Option>
</Group>
<Group>
<Name>xchat</Name>
<Option>maximized</Option>
</Group>
<Group>
<Name>firefox</Name>
<Option>maximized</Option>
</Group>
<Group>
<Name>libreoffice</Name>
<Option>maximized</Option>
</Group>
<Group>
<Name>claws-mail</Name>
<Option>maximized</Option>
</Group>
<Group>
<Name>leafpad</Name>
<Option>maximized</Option>
</Group>
[code]
On line 61 i make the taskbar thinnner and give the option to make it 'autohide' if so desired:
[code]
<!-- Additional tray attributes: autohide, width, border, layer, layout -->
<Tray x="0" y="-1" height="24" autohide="false">
Starting on line 84 i changed the fonts to 'Fixed' (choose whatever font you like)
played with the size and eliminated the 'bold' option, and did the same with every font option i found.
On line 156, i changed the number of virtual desktops:
<!-- Desktop tags can be contained within Desktops for desktop names. -->
<Desktops width="2">
On line 178 i chose the 'sloppy' Focus Model
<!-- The focus model (sloppy or click) -->
<FocusModel>sloppy</FocusModel>
On line 202 i put my apps keybindings:
Mod 4 = Super = Windows key = 4
<Key mask="A" key="Tab">nextstacked</Key>
<Key mask="4" key="k">close</Key>
<Key mask="4" key="f">exec:firefox</Key>
<Key mask="4" key="e">exec:pcmanfm</Key>
<Key mask="4" key="a" >exec:xterm</Key>
<Key mask="4" key="m">exec:claws-mail</Key>
<Key mask="4" key="h">exec:sudo /sbin/halt -p</Key>
<Key mask="4" key="p">exec:sudo /sbin/reboot</Key>
<Key mask="4" key="u">exec:xchat</Key>
<Key mask="4" key="l">exec:leafpad</Key>
<Key mask="4" key="o">exec:libreoffice3.5</Key>
<Key mask="4" key="r">restart</Key>
<Key mask="" key="F12">maximize</Key>
<Key mask="" key="F2">exec:fbrun</Key>
<Key mask="4" key="#">desktop#</Key>
<Key mask="4" key="F1">root:1</Key>
<Key mask="" key="Print">exec:xterm -e scrot -cd 10</Key>
key "Super+KP_Substract" amixer -q set PCM 5- unmute # lower volume
key "Super+KP_Add" amixer -q set PCM 5+ unmute #increase volume
</JWM>
Save/Exit your editor and Restart jwm
So, press the windows key + your app letter and you launch your app.
F12 will maximize any window
Alt-Tab comes by default
F2 will launch fbrun
Window key + F1 launches the Menu
Press the Print key and you get a snapshot
Windows key + 1 or 2 switches virtual desktops
Winkey + r -- restart jwm
winkey + h -- sudo halt-p
winkey + p -- sudo reboot
I hope i've been clear

[/code][/code]