summaryrefslogtreecommitdiff
path: root/xc/unsupported/test/InsPEX/startpex
blob: 8d8be55d6c6cb7fab7bf6b8f15a139d4d0bbf8a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
#
# $XConsortium: startpex,v 5.4 91/02/19 20:43:40 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