#!/bin/sh
#
# This is used to start up the server and some other junk.
# See Xstartup for killing off these stupid things.
#

DISPLAY=unix:0
export DISPLAY

/usr/bin/X11/X :0 bc v &
xpid=$!
# sleep 5
#/usr/bin/X11/xterm -C -fn vtsingle -geometry 80x10+250-50 \
#	-e /bin/sleep 9999999 </dev/null &
/usr/bin/X11/oclock -geometry 200x200-15-15 &
wait $xpid

# EOF
