2006-11-26 07:43:35 -07:00
|
|
|
XCOMM!SHELL_CMD
|
|
|
|
|
|
|
|
XCOMM
|
|
|
|
XCOMM This is just a sample implementation of a slightly less primitive
|
|
|
|
XCOMM interface than xinit. It looks for user .xinitrc and .xserverrc
|
|
|
|
XCOMM files, then system xinitrc and xserverrc files, else lets xinit choose
|
|
|
|
XCOMM its default. The system xinitrc should probably do things like check
|
2011-10-31 08:00:14 -06:00
|
|
|
XCOMM for .Xresources files and merge them in, start up a window manager,
|
|
|
|
XCOMM and pop a clock and several xterms.
|
2006-11-26 07:43:35 -07:00
|
|
|
XCOMM
|
|
|
|
XCOMM Site administrators are STRONGLY urged to write nicer versions.
|
|
|
|
XCOMM
|
|
|
|
|
2008-06-18 14:31:51 -06:00
|
|
|
unset DBUS_SESSION_BUS_ADDRESS
|
|
|
|
unset SESSION_MANAGER
|
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
#if defined(__SCO__) || defined(__UNIXWARE__) || defined(__APPLE__)
|
2006-11-26 07:43:35 -07:00
|
|
|
|
|
|
|
XCOMM Check for /usr/bin/X11 and BINDIR in the path, if not add them.
|
|
|
|
XCOMM This allows startx to be placed in a place like /usr/bin or /usr/local/bin
|
|
|
|
XCOMM and people may use X without changing their PATH.
|
|
|
|
XCOMM Note that we put our own bin directory at the front of the path, and
|
2008-04-20 07:46:02 -06:00
|
|
|
XCOMM the standard system path at the back, since if you are using the Xorg
|
2011-10-31 08:00:14 -06:00
|
|
|
XCOMM server there's a pretty good chance you want to bias the Xorg clients
|
2008-04-20 07:46:02 -06:00
|
|
|
XCOMM over the old system's clients.
|
2006-11-26 07:43:35 -07:00
|
|
|
|
|
|
|
XCOMM First our compiled path
|
2008-04-20 07:46:02 -06:00
|
|
|
bindir=__bindir__
|
2006-11-26 07:43:35 -07:00
|
|
|
|
|
|
|
case $PATH in
|
2008-04-20 07:46:02 -06:00
|
|
|
*:$bindir | *:$bindir:* | $bindir:*) ;;
|
|
|
|
*) PATH=$bindir:$PATH ;;
|
2006-11-26 07:43:35 -07:00
|
|
|
esac
|
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
XCOMM Now the "old" compiled path
|
|
|
|
#ifdef __APPLE__
|
|
|
|
oldbindir=/usr/X11R6/bin
|
|
|
|
#else
|
|
|
|
oldbindir=/usr/bin/X11
|
|
|
|
#endif
|
2006-11-26 07:43:35 -07:00
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
if [ -d "$oldbindir" ] ; then
|
|
|
|
case $PATH in
|
|
|
|
*:$oldbindir | *:$oldbindir:* | $oldbindir:*) ;;
|
|
|
|
*) PATH=$PATH:$oldbindir ;;
|
|
|
|
esac
|
|
|
|
fi
|
2006-11-26 07:43:35 -07:00
|
|
|
|
|
|
|
XCOMM Bourne shell does not automatically export modified environment variables
|
|
|
|
XCOMM so export the new PATH just in case the user changes the shell
|
|
|
|
export PATH
|
2008-04-20 07:46:02 -06:00
|
|
|
#endif
|
2006-11-26 07:43:35 -07:00
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
#if defined(__SCO__) || defined(__UNIXWARE__)
|
2006-11-26 07:43:35 -07:00
|
|
|
XCOMM Set up the XMERGE env var so that dos merge is happy under X
|
|
|
|
|
|
|
|
if [ -f /usr/lib/merge/xmergeset.sh ]; then
|
|
|
|
. /usr/lib/merge/xmergeset.sh
|
|
|
|
elif [ -f /usr/lib/merge/console.disp ]; then
|
|
|
|
XMERGE=`cat /usr/lib/merge/console.disp`
|
|
|
|
export XMERGE
|
|
|
|
fi
|
|
|
|
|
|
|
|
userclientrc=$HOME/.startxrc
|
|
|
|
sysclientrc=LIBDIR/sys.startxrc
|
|
|
|
scouserclientrc=$HOME/.xinitrc
|
|
|
|
scosysclientrc=XINITDIR/xinitrc
|
|
|
|
#else
|
|
|
|
userclientrc=$HOME/.xinitrc
|
|
|
|
sysclientrc=XINITDIR/xinitrc
|
|
|
|
#endif
|
|
|
|
|
|
|
|
userserverrc=$HOME/.xserverrc
|
|
|
|
sysserverrc=XINITDIR/xserverrc
|
|
|
|
defaultclient=XTERM
|
|
|
|
defaultserver=XSERVER
|
|
|
|
defaultclientargs=""
|
|
|
|
defaultserverargs=""
|
2008-06-18 14:31:51 -06:00
|
|
|
defaultdisplay=":0"
|
2006-11-26 07:43:35 -07:00
|
|
|
clientargs=""
|
|
|
|
serverargs=""
|
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
#ifdef __APPLE__
|
|
|
|
|
2009-05-03 07:17:37 -06:00
|
|
|
if [ "x$X11_PREFS_DOMAIN" = x ] ; then
|
2011-10-31 08:00:14 -06:00
|
|
|
export X11_PREFS_DOMAIN=BUNDLE_ID_PREFIX".X11"
|
2009-05-03 07:17:37 -06:00
|
|
|
fi
|
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
XCOMM Initialize defaults (this will cut down on "safe" error messages)
|
2010-11-01 02:52:28 -06:00
|
|
|
if ! defaults read $X11_PREFS_DOMAIN cache_fonts > /dev/null 2>&1 ; then
|
2009-05-03 07:17:37 -06:00
|
|
|
defaults write $X11_PREFS_DOMAIN cache_fonts -bool true
|
2008-04-20 07:46:02 -06:00
|
|
|
fi
|
|
|
|
|
2010-11-01 02:52:28 -06:00
|
|
|
if ! defaults read $X11_PREFS_DOMAIN no_auth > /dev/null 2>&1 ; then
|
2009-05-03 07:17:37 -06:00
|
|
|
defaults write $X11_PREFS_DOMAIN no_auth -bool false
|
2008-04-20 07:46:02 -06:00
|
|
|
fi
|
|
|
|
|
2010-11-01 02:52:28 -06:00
|
|
|
if ! defaults read $X11_PREFS_DOMAIN nolisten_tcp > /dev/null 2>&1 ; then
|
2009-05-03 07:17:37 -06:00
|
|
|
defaults write $X11_PREFS_DOMAIN nolisten_tcp -bool true
|
2008-04-20 07:46:02 -06:00
|
|
|
fi
|
|
|
|
|
|
|
|
XCOMM First, start caching fonts
|
2009-05-03 07:17:37 -06:00
|
|
|
if [ x`defaults read $X11_PREFS_DOMAIN cache_fonts` = x1 ] ; then
|
|
|
|
if [ -x $bindir/font_cache ] ; then
|
|
|
|
$bindir/font_cache &
|
|
|
|
elif [ -x $bindir/font_cache.sh ] ; then
|
|
|
|
$bindir/font_cache.sh &
|
|
|
|
elif [ -x $bindir/fc-cache ] ; then
|
|
|
|
$bindir/fc-cache &
|
2008-04-20 07:46:02 -06:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-06-18 14:31:51 -06:00
|
|
|
if [ -x XINITDIR/privileged_startx ] ; then
|
|
|
|
# Don't push this into the background becasue it can cause
|
|
|
|
# a race to create /tmp/.X11-unix
|
|
|
|
XINITDIR/privileged_startx
|
|
|
|
fi
|
|
|
|
|
2009-05-03 07:17:37 -06:00
|
|
|
if [ x`defaults read $X11_PREFS_DOMAIN no_auth` = x0 ] ; then
|
2008-04-20 07:46:02 -06:00
|
|
|
enable_xauth=1
|
|
|
|
else
|
|
|
|
enable_xauth=0
|
|
|
|
fi
|
|
|
|
|
2009-05-03 07:17:37 -06:00
|
|
|
if [ x`defaults read $X11_PREFS_DOMAIN nolisten_tcp` = x1 ] ; then
|
2008-04-20 07:46:02 -06:00
|
|
|
defaultserverargs="$defaultserverargs -nolisten tcp"
|
|
|
|
fi
|
|
|
|
|
2010-11-01 02:52:28 -06:00
|
|
|
if defaults read $X11_PREFS_DOMAIN dpi > /dev/null 2>&1 ; then
|
2009-05-03 07:17:37 -06:00
|
|
|
defaultserverargs="$defaultserverargs -dpi `defaults read $X11_PREFS_DOMAIN dpi`"
|
|
|
|
fi
|
|
|
|
|
2010-11-01 02:52:28 -06:00
|
|
|
d=0
|
|
|
|
while true ; do
|
|
|
|
[ -e /tmp/.X$d-lock ] || break
|
|
|
|
d=$(($d + 1))
|
2008-04-20 07:46:02 -06:00
|
|
|
done
|
|
|
|
defaultdisplay=":$d"
|
2010-11-01 02:52:28 -06:00
|
|
|
unset d
|
2008-04-20 07:46:02 -06:00
|
|
|
|
|
|
|
#else
|
|
|
|
enable_xauth=1
|
|
|
|
#endif
|
|
|
|
|
2006-11-26 07:43:35 -07:00
|
|
|
#if defined(__SCO__) || defined(__UNIXWARE__)
|
|
|
|
|
|
|
|
XCOMM SCO -t option: do not start an X server
|
|
|
|
case $1 in
|
|
|
|
-t) if [ -n "$DISPLAY" ]; then
|
|
|
|
REMOTE_SERVER=TRUE
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
echo "DISPLAY environment variable not set"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
#endif
|
|
|
|
|
|
|
|
whoseargs="client"
|
|
|
|
while [ x"$1" != x ]; do
|
|
|
|
case "$1" in
|
|
|
|
XCOMM '' required to prevent cpp from treating "/*" as a C comment.
|
|
|
|
/''*|\./''*)
|
|
|
|
if [ "$whoseargs" = "client" ]; then
|
2010-05-31 14:23:19 -06:00
|
|
|
if [ x"$client" = x ] && [ x"$clientargs" = x ]; then
|
2006-11-26 07:43:35 -07:00
|
|
|
client="$1"
|
|
|
|
else
|
|
|
|
clientargs="$clientargs $1"
|
|
|
|
fi
|
|
|
|
else
|
2010-05-31 14:23:19 -06:00
|
|
|
if [ x"$server" = x ] && [ x"$serverargs" = x ]; then
|
2006-11-26 07:43:35 -07:00
|
|
|
server="$1"
|
|
|
|
else
|
|
|
|
serverargs="$serverargs $1"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
whoseargs="server"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if [ "$whoseargs" = "client" ]; then
|
|
|
|
clientargs="$clientargs $1"
|
|
|
|
else
|
|
|
|
XCOMM display must be the FIRST server argument
|
|
|
|
if [ x"$serverargs" = x ] && @@
|
|
|
|
expr "$1" : ':[0-9][0-9]*$' > /dev/null 2>&1; then
|
|
|
|
display="$1"
|
|
|
|
else
|
|
|
|
serverargs="$serverargs $1"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
XCOMM process client arguments
|
|
|
|
if [ x"$client" = x ]; then
|
2009-05-03 07:17:37 -06:00
|
|
|
client=$defaultclient
|
|
|
|
|
2006-11-26 07:43:35 -07:00
|
|
|
XCOMM if no client arguments either, use rc file instead
|
|
|
|
if [ x"$clientargs" = x ]; then
|
2009-05-03 07:17:37 -06:00
|
|
|
if [ -f "$userclientrc" ]; then
|
|
|
|
client=$userclientrc
|
|
|
|
elif [ -f "$sysclientrc" ]; then
|
|
|
|
client=$sysclientrc
|
|
|
|
#if defined(__SCO__) || defined(__UNIXWARE__)
|
|
|
|
elif [ -f "$scouserclientrc" ]; then
|
|
|
|
client=$scouserclientrc
|
|
|
|
elif [ -f "$scosysclientrc" ]; then
|
|
|
|
client=$scosysclientrc
|
|
|
|
#endif
|
|
|
|
fi
|
|
|
|
|
|
|
|
clientargs=$defaultclientargs
|
2006-11-26 07:43:35 -07:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
XCOMM process server arguments
|
|
|
|
if [ x"$server" = x ]; then
|
2008-06-18 14:31:51 -06:00
|
|
|
server=$defaultserver
|
|
|
|
|
|
|
|
XCOMM if no server arguments or display either, use defaults
|
2006-11-26 07:43:35 -07:00
|
|
|
if [ x"$serverargs" = x -a x"$display" = x ]; then
|
2008-06-18 14:31:51 -06:00
|
|
|
XCOMM For compatibility reasons, only use xserverrc if there were no server command line arguments
|
2009-05-03 07:17:37 -06:00
|
|
|
if [ -f "$userserverrc" ]; then
|
2008-06-18 14:31:51 -06:00
|
|
|
server=$userserverrc
|
2009-05-03 07:17:37 -06:00
|
|
|
elif [ -f "$sysserverrc" ]; then
|
2008-06-18 14:31:51 -06:00
|
|
|
server=$sysserverrc
|
|
|
|
fi
|
|
|
|
|
|
|
|
serverargs=$defaultserverargs
|
|
|
|
display=$defaultdisplay
|
2006-11-26 07:43:35 -07:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
if [ x"$enable_xauth" = x1 ] ; then
|
|
|
|
if [ x"$XAUTHORITY" = x ]; then
|
|
|
|
XAUTHORITY=$HOME/.Xauthority
|
|
|
|
export XAUTHORITY
|
|
|
|
fi
|
2006-11-26 07:43:35 -07:00
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
removelist=
|
2006-11-26 07:43:35 -07:00
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
XCOMM set up default Xauth info for this machine
|
|
|
|
case `uname` in
|
|
|
|
Linux*)
|
|
|
|
if [ -z "`hostname --version 2>&1 | grep GNU`" ]; then
|
|
|
|
hostname=`hostname -f`
|
|
|
|
else
|
|
|
|
hostname=`hostname`
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
hostname=`hostname`
|
|
|
|
;;
|
|
|
|
esac
|
2006-11-26 07:43:35 -07:00
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
authdisplay=${display:-:0}
|
2007-09-15 11:12:01 -06:00
|
|
|
#if defined(HAS_COOKIE_MAKER) && defined(MK_COOKIE)
|
2008-04-20 07:46:02 -06:00
|
|
|
mcookie=`MK_COOKIE`
|
2007-09-15 11:12:01 -06:00
|
|
|
#else
|
2008-06-18 14:31:51 -06:00
|
|
|
if [ -r /dev/urandom ]; then
|
|
|
|
mcookie=`dd if=/dev/urandom bs=16 count=1 2>/dev/null | hexdump -e \\"%08x\\"`
|
|
|
|
else
|
|
|
|
mcookie=`dd if=/dev/random bs=16 count=1 2>/dev/null | hexdump -e \\"%08x\\"`
|
|
|
|
fi
|
|
|
|
#endif
|
2008-04-20 07:46:02 -06:00
|
|
|
if test x"$mcookie" = x; then
|
|
|
|
echo "Couldn't create cookie"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
dummy=0
|
2006-11-26 07:43:35 -07:00
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
XCOMM create a file with auth information for the server. ':0' is a dummy.
|
|
|
|
xserverauthfile=$HOME/.serverauth.$$
|
2009-05-03 07:17:37 -06:00
|
|
|
trap "rm -f '$xserverauthfile'" HUP INT QUIT ILL TRAP KILL BUS TERM
|
|
|
|
xauth -q -f "$xserverauthfile" << EOF
|
2006-11-26 07:43:35 -07:00
|
|
|
add :$dummy . $mcookie
|
|
|
|
EOF
|
2010-05-31 14:23:19 -06:00
|
|
|
#if defined(__APPLE__) || defined(__CYGWIN__)
|
2010-11-01 02:52:28 -06:00
|
|
|
xserverauthfilequoted=$(echo ${xserverauthfile} | sed "s/'/'\\\\''/g")
|
|
|
|
serverargs=${serverargs}" -auth '"${xserverauthfilequoted}"'"
|
2009-05-03 07:17:37 -06:00
|
|
|
#else
|
2008-04-20 07:46:02 -06:00
|
|
|
serverargs=${serverargs}" -auth "${xserverauthfile}
|
2009-05-03 07:17:37 -06:00
|
|
|
#endif
|
2008-04-20 07:46:02 -06:00
|
|
|
|
|
|
|
XCOMM now add the same credentials to the client authority file
|
|
|
|
XCOMM if '$displayname' already exists do not overwrite it as another
|
|
|
|
XCOMM server man need it. Add them to the '$xserverauthfile' instead.
|
|
|
|
for displayname in $authdisplay $hostname$authdisplay; do
|
|
|
|
authcookie=`XAUTH list "$displayname" @@
|
|
|
|
| sed -n "s/.*$displayname[[:space:]*].*[[:space:]*]//p"` 2>/dev/null;
|
|
|
|
if [ "z${authcookie}" = "z" ] ; then
|
|
|
|
XAUTH -q << EOF
|
2006-11-26 07:43:35 -07:00
|
|
|
add $displayname . $mcookie
|
|
|
|
EOF
|
2008-04-20 07:46:02 -06:00
|
|
|
removelist="$displayname $removelist"
|
|
|
|
else
|
|
|
|
dummy=$(($dummy+1));
|
2009-05-03 07:17:37 -06:00
|
|
|
XAUTH -q -f "$xserverauthfile" << EOF
|
2006-11-26 07:43:35 -07:00
|
|
|
add :$dummy . $authcookie
|
|
|
|
EOF
|
2008-04-20 07:46:02 -06:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2006-11-26 07:43:35 -07:00
|
|
|
|
|
|
|
#if defined(__SCO__) || defined(__UNIXWARE__)
|
|
|
|
if [ "$REMOTE_SERVER" = "TRUE" ]; then
|
|
|
|
exec SHELL_CMD ${client}
|
|
|
|
else
|
2009-05-03 07:17:37 -06:00
|
|
|
XINIT "$client" $clientargs -- "$server" $display $serverargs
|
2006-11-26 07:43:35 -07:00
|
|
|
fi
|
|
|
|
#else
|
2009-05-03 07:17:37 -06:00
|
|
|
|
2010-05-31 14:23:19 -06:00
|
|
|
#if defined(__APPLE__) || defined(__CYGWIN__)
|
2009-05-03 07:17:37 -06:00
|
|
|
eval XINIT \"$client\" $clientargs -- \"$server\" $display $serverargs
|
|
|
|
#else
|
|
|
|
XINIT "$client" $clientargs -- "$server" $display $serverargs
|
|
|
|
#endif
|
|
|
|
|
2006-11-26 07:43:35 -07:00
|
|
|
#endif
|
2010-05-31 14:23:19 -06:00
|
|
|
retval=$?
|
2006-11-26 07:43:35 -07:00
|
|
|
|
2008-04-20 07:46:02 -06:00
|
|
|
if [ x"$enable_xauth" = x1 ] ; then
|
|
|
|
if [ x"$removelist" != x ]; then
|
|
|
|
XAUTH remove $removelist
|
|
|
|
fi
|
|
|
|
if [ x"$xserverauthfile" != x ]; then
|
2009-05-03 07:17:37 -06:00
|
|
|
rm -f "$xserverauthfile"
|
2008-04-20 07:46:02 -06:00
|
|
|
fi
|
2006-11-26 07:43:35 -07:00
|
|
|
fi
|
2008-04-20 07:46:02 -06:00
|
|
|
|
2006-11-26 07:43:35 -07:00
|
|
|
/*
|
|
|
|
* various machines need special cleaning up
|
|
|
|
*/
|
|
|
|
#ifdef __linux__
|
|
|
|
if command -v deallocvt > /dev/null 2>&1; then
|
|
|
|
deallocvt
|
|
|
|
fi
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef macII
|
|
|
|
Xrepair
|
|
|
|
screenrestore
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(sun)
|
|
|
|
kbd_mode -a
|
|
|
|
#endif
|
2010-05-31 14:23:19 -06:00
|
|
|
|
|
|
|
exit $retval
|
|
|
|
|