#!/bin/bash # # Name: # xt. # # Purpose: # Start an xterm. # # Note: # See ./xts for sample color combinations. FG=$1 BG=$2 IP=$3 /usr/bin/xterm -bg $BG -cr yellow -display $IP:0 -fg $FG -font 9x15bold -geometry 120x50+0+0 -ls -name ${FG}_$BG -sb -sl 1000 &