#!/bin/sh
#
# $XConsortium: startpex,v 5.5 94/04/17 20:46:09 hersh Exp $
#
# 
# Copyright 1990, 1991 by Sun Microsystems, Inc. and the X Consortium.
# 
#			 All Rights Reserved
# 
# Permission to use, copy, modify, and distribute this software and its 
# documentation for any purpose and without fee is hereby granted, 
# provided that the above copyright notice appear in all copies and that
# both that copyright notice and this permission notice appear in 
# supporting documentation, and that the names of Sun Microsystems
# and the X Consortium not be used in advertising or publicity 
# pertaining to distribution of the software without specific, written 
# prior permission.  
# 
# SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
#
#	"Usage:  startpex DEVICE XRC_FILE [options]"
#

XHOME=${XHOME:-../../..}

X=$XHOME/server/Xsun
XPATH=/usr/bin/X11
XCMD=xinit

#	This Env'var MUST be set to start up the PEX server extension right
PEX_FONTPATH=$XHOME/extensions/fonts/PEX; export PEX_FONTPATH

XRGB=$XHOME/rgb/rgb
XFONTHOME=$XHOME/fonts/bdf
#XFONTS=$XFONTHOME/misc,$XFONTHOME/xview,$XFONTHOME/75dpi
XFONTS=$XFONTHOME/misc,$XFONTHOME/75dpi

DEV=${1:-/dev/cgtwo0}
if [ $# -ge 1 ]
then
	shift
fi
MONO=""
if [ $DEV = /dev/bwtwo0 ]
then
	MONO="-mono"
fi

XRC=${1:-$HOME/.xrc}
if [ $# -ge 1 ]
then
	shift
fi

PATH=$PATH:$XPATH; export PATH

#clear
#  Yow!  What a hack!  (But it helps with SunView cut&paste!)

WINDOW_PARENT=/dev/win0; export WINDOW_PARENT

unset WINDOW_PARENT
exit
