Sherlock's Hitchhiker's Guide to IceWM, Chapter 6:
iann wrote:Maybe I should try IceWM. Looks a lot like Openbox with icons on the menus?
In IceWM, you have icons in the menus, but you can remove or replace them in the menu file. Two example lines of /home/hs/.icewm/menu:
prog "Dateimanager _Thunar" folder thunar
prog "Web-Browser _Firefox" /usr/share/pixmaps/firefox.png firefox
Firefox will have the icon /usr/share/pixmaps/firefox.png, thunar will have the icon folder_16x16.xpm / folder_32x32.xpm, found in the default directory /usr/share/icewm/icons
If you don't want to have icons, write a not existing icon file into the menu file 
The menu file has an easy syntax without html / xml. You can begin a line with 1 of 3 keywords: prog, separator, menu. separator draws a line between two entries. menu makes sub-menus, sub-sub-menus and so on.
The toolbar file (for the application-start-icons in the taskbar) has the same syntax. Here is an example submenu in /home/hs/.icewm/toolbar:
menu "Ende" /usr/share/pixmaps/gnome-logo-icon-transparent.png {
prog "Ausschalten" xterm sudo /sbin/shutdown -h now
prog "Neu starten" xterm sudo /sbin/shutdown -r now
}
The keys file (for shortcuts) has a similar syntax. Here are some example lines of /home/hs/.icewm/keys (# = comment)
# with mouse pointer:
key "Print" /bin/sh -c "/usr/bin/gnome-panel-screenshot"
# without mouse pointer:
key "Shift+Print" scrot '%Y%m%d-%H%M%S.png' -e 'mv $f ~/Bilder/Screenshots/'
key "Super+r" thunar
key "Alt+Ctrl+y" geany
The keys Super, Alt, Ctrl, Shift, Print are named Super, Alt, Ctrl, Shift, Print 