#!/bin/csh -f
#
# This script starts the RTC program in an Xterm window.
#
# The size of the Xterm window (geometry) is fixed so that curses 
# will work correctly.  This cannot be changed without a corresponding 
# change in the curses window size in rtcmaster.c
# 
set path = ( . /bin /usr/ucb /usr/diag/sysdiag /usr/bin/X11 )

# 
# get the version string
#
set VERS = `strings rtcmaster | grep version` 

xterm -geometry 120x55+0+150 -ls -fn lucidasanstypewriter-bold-12 -T "$VERS" -n "RTC" -e rtcmaster &
exit
