#!/bin/csh -f
# $Id: root.xsession,v 1.1 1998/12/30 19:52:52 danw Exp $

# Source the users .cshrc if one exists otherwise 
# do some minimal stuff

if (-r ~/.cshrc) then
	source ~/.cshrc
else
	set path=(/usr/athena/bin /etc/athena /bin/athena /usr/bin /bin \
                  /usr/sbin /usr/athena/etc /usr/sbin /sbin /usr/X11R6/bin)
	set prompt="`uname -n`# "
endif

# Start up an xterm window
exec xterm  -ls -geometry 80x56+0+30
