#!/bin/csh
# myxterm (start up xterm with options I like
#
# Modified May 16, 2005 Add color option with defaults
# 12/7/95 rcg.  Enhance to output people with same last name
# rcg 11/8/95

#set name=$1
#if ($name == "") then

set node=`uname -n`
set color="gray"
if ($node == "gb1" ) then
	set color="blue"
endif
if ($node == "gb6" ) then
	set color="pink"
endif
if ($node == "fleetlink" ) then
	set color="green"
endif
if ($node == "fleetlink.whoi.edu" ) then
	set color="green"
endif
if ($node == "usglobec" ) then
	set color="yellow"
endif

set title=$node
#echo title is $title
#echo color is $color
#echo
xterm -sb -bg $color -fg black -title $title &



