#!/bin/sh # $Id: xt,v 1.2 2005/03/07 21:50:08 max Exp $ font="luxi mono" #font="Andale Mono" #font="courier" if [ "$FS" != "" ]; then font_size=$FS else font_size=14 fi # this makes high characters work out export LANG=en_US if [ `uname` = "Linux" ]; then xterm -bg black -fg white \ -fa '$font' -fs $font_size \ -sb -si -sk -vb -sl 1024 -rightbar \ +sf \ -geometry 100x40 \ $* & exit fi dtterm -bg black -fg white -sb -vb -geometry 100x40 -xrm *menuBar:False -title $HOSTNAME $* &