#!/bin/sh
#
# Xsession
#
# This is the program that is run as the client
# for the display manager.  This example is
# quite friendly as it attempts to run a per-user
# .xsession file instead of forcing a particular
# session layout
#

LOGNAME=$USER export LOGNAME
TZ=EST5EDT; export TZ
PATH=$PATH:/usr/X/bin: export PATH
#/usr/bin/X11/xlogin -geometry 654x293+400+300
xset fp+ /usr/lib/X11/ncd/fonts/Xol

if [ -f $HOME/.xsession ] ; then
	.xsession &
else
	/usr/bin/X11/twm -display $DISPLAY &
	exec xterm -ls -title "`hostname` - mathnet"
fi
