Learn Tiny Core. View Tiny Core Screen Shots and Videos.
A list with all supported wm's in a prominent place might be a consideration, unless it already exists and I have overlooked it (as I am already fully satisfied with 2-3 wm's which I am sure they are supported).
#!/bin/bash# (c) Ali 2011. /etc/init.d/tc-functions. /usr/local/bin/openbox_menu_commonTCEMENU=/usr/local/tce.openbox.xmloutputFile="<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<openbox_menu xmlns=\"http://openbox.org/3.4/menu\">\n\\t<menu id=\"apps-menu\" label=\"Applications\">\n"cd /usr/local/share/applicationsITEMS=`ls | wc -l`if [ $ITEMS -gt "0" ] then LIST=`ls` for X in $LIST; do outputFile="${outputFile}\t\t`writeMenuItem ./"$X"`\n" done fioutputFile="${outputFile}\t</menu>\n</openbox_menu>"echo -e $outputFile > $TCEMENUopenbox --reconfigure
OK. I will look at this extension.