For those who\'d like that terminal icon on the lower left to bring up aterm instead, this modification of /usr/bin/mb-applet-xterm-wrapper.sh will do it. Personally I like rxvt best, so I\'m leaving that in for when it actually shows up. The -rv switch is \"reverse video\" (white on black) which makes a truer black than the way aterm is launched from the submenu with foreground and background switches - somehow that \"black\" is dark grey instead. But if you want white on black, just leave that off.
#!/bin/sh
# This just wraps rxvt, aterm and xterm so a term gets launched ok.
# rxvt is the preference, then aterm. This could be much improved
#
if [ -x /usr/X11R6/bin/rxvt ]; then
exec /usr/X11R6/bin/rxvt;
else
if [ -x /usr/bin/aterm ]; then
export TERM=vt100;
exec /usr/bin/aterm -rv;
else
exec xterm;
fi
fi
[added vt100 line 6/9 - otherwise sees garbage in joe]