home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!dtix!darwin.sura.net!Sirius.dfn.de!chx400!josef!sinkwitz
- From: sinkwitz@ifi.unizh.ch (Rainer Sinkwitz)
- Newsgroups: comp.windows.open-look
- Subject: Re: OpenWindows with Xsun instead of xnews
- Message-ID: <1992Aug27.141344.1149@ifi.unizh.ch>
- Date: 27 Aug 92 14:13:44 GMT
- References: <1992Aug26.143338.23781@cbnewsj.cb.att.com> <1992Aug26.235426.21632@cs.anu.edu.au>
- Sender: sinkwitz@ifi.unizh.ch (Rainer Sinkwitz)
- Organization: University of Zurich, Department of Computer Science
- Lines: 597
-
-
- You may try my compatibility package. You may then run "openwin -server X"
- and preserve most of the Sun enhancements like xauthority, compose keys,
- etc.
-
- oooooo oooo Rainer Sinkwitz, Multimedia Lab sinkwitz@ifi.unizh.ch
- $ $ $ " University of Zurich, Switzerland VOICE +41-1-257-4346
- $"$$ """"$ Inst.f.Informatik, Winterthurerstr. 190 FAX +41-1-363-00-35
- o$o "$o $ooo" CH-8057-Z\"urich
-
-
- #! /bin/sh
- # This is a shell archive. Remove anything before this line, then unpack
- # it by saving it into a file and typing "sh file". To overwrite existing
- # files, type "sh file -c". You can also feed this as standard input via
- # unshar, or by typing "sh <file", e.g.. If this archive is complete, you
- # will see the following message at the end:
- # "End of shell archive."
- # Contents: OW3X11R5 OW3X11R5/ow3patch OW3X11R5/install
- # OW3X11R5/README
- # Wrapped by sinkwitz@artemis on Thu Aug 27 16:09:49 1992
- PATH=/bin:/usr/bin:/usr/ucb ; export PATH
- if test ! -d 'OW3X11R5' ; then
- echo shar: Creating directory \"'OW3X11R5'\"
- mkdir 'OW3X11R5'
- fi
- if test -f 'OW3X11R5/ow3patch' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'OW3X11R5/ow3patch'\"
- else
- echo shar: Extracting \"'OW3X11R5/ow3patch'\" \(11142 characters\)
- sed "s/^X//" >'OW3X11R5/ow3patch' <<'END_OF_FILE'
- X*** ./bin/openwin.org Tue Apr 21 17:47:44 1992
- X--- ./bin/openwin Tue Apr 21 17:54:20 1992
- X***************
- X*** 23,29 ****
- X fi
- X
- X # default DISPLAY is :0
- X! DISPLAY=":0"
- X
- X
- X # initial arglist is null
- X--- 23,29 ----
- X fi
- X
- X # default DISPLAY is :0
- X! DISPLAY=${DISPLAY:-:0}
- X
- X
- X # initial arglist is null
- X***************
- X*** 72,80 ****
- X SERVER="$1"
- X case "$SERVER" in
- X /*) ;;
- X! *) SERVER=$OPENWINHOME/bin/$SERVER ;;
- X esac
- X ;;
- X -noauth)
- X NOAUTH=1
- X AUTH=
- X--- 72,91 ----
- X SERVER="$1"
- X case "$SERVER" in
- X /*) ;;
- X! xnews) SERVER=$OPENWINHOME/bin/$SERVER ;;
- X! none)
- X! NOSUNVIEW=1
- X! PASSTHRU="$PASSTHRU -nosunview"
- X! ;;
- X! *) SERVER=/usr/bin/X11/$SERVER
- X! NOSUNVIEW=1
- X! PASSTHRU="$PASSTHRU -nosunview"
- X! ;;
- X esac
- X ;;
- X+ -consoletype)
- X+ shift
- X+ CONSOLETYPE="$1";;
- X -noauth)
- X NOAUTH=1
- X AUTH=
- X***************
- X*** 90,103 ****
- X shift
- X done
- X
- X! # complain if $DISPLAY doesn't begin with a colon.
- X! case "$DISPLAY" in
- X! :*)
- X! ;;
- X! *)
- X! ;;
- X! esac
- X
- X # Add to the path variable named by $1 the component $2. $3 must be
- X # "append" or "prepend" to indicate where the component is added.
- X addpath () {
- X--- 101,127 ----
- X shift
- X done
- X
- X! if [ ${SERVER:-0} != "none" ]; then
- X! #
- X! # Check to see if OpenWindows is already running on requested DISPLAY
- X! #
- X! $OPENWINHOME/lib/checkOW $DISPLAY
- X! retval=$?
- X! if [ $retval -ne 1 ]; then
- X! err "There is already a server running on $DISPLAY"
- X! fi
- X
- X+ # complain if $DISPLAY doesn't begin with a colon.
- X+ case "$DISPLAY" in
- X+ :*)
- X+ ;;
- X+ *)
- X+ err "\"$DISPLAY\" is an illegal value for \$DISPLAY"
- X+ ;;
- X+ esac
- X+
- X+ fi # SERVER != none
- X+
- X # Add to the path variable named by $1 the component $2. $3 must be
- X # "append" or "prepend" to indicate where the component is added.
- X addpath () {
- X***************
- X*** 137,147 ****
- X if [ $INCLUDEDEMOPATH ]; then
- X prepend PATH $OPENWINHOME/demo
- X fi
- X! prepend PATH $OPENWINHOME/bin
- X prepend LD_LIBRARY_PATH $OPENWINHOME/lib
- X append FONTPATH $OPENWINHOME/lib/fonts
- X append HELPPATH $OPENWINHOME/lib/locale
- X append HELPPATH $OPENWINHOME/lib/help
- X append XFILESEARCHPATH $OPENWINHOME/lib/%T/%N%S
- X
- X if [ $NOSUNVIEW = 1 ]; then
- X--- 161,181 ----
- X if [ $INCLUDEDEMOPATH ]; then
- X prepend PATH $OPENWINHOME/demo
- X fi
- X! prepend PATH /usr/bin/X11:$OPENWINHOME/bin
- X!
- X prepend LD_LIBRARY_PATH $OPENWINHOME/lib
- X append FONTPATH $OPENWINHOME/lib/fonts
- X+ append HELPPATH /usr/lib/X11/help
- X append HELPPATH $OPENWINHOME/lib/locale
- X append HELPPATH $OPENWINHOME/lib/help
- X+ append XFILESEARCHPATH /usr/lib/X11/%L/%T/%N%C%S
- X+ append XFILESEARCHPATH /usr/lib/X11/%l/%T/%N%C%S
- X+ append XFILESEARCHPATH /usr/lib/X11/%T/%N%C%S
- X+ append XFILESEARCHPATH /usr/lib/X11/%L/%T/%N%S
- X+ append XFILESEARCHPATH /usr/lib/X11/%l/%T/%N%S
- X+ append XFILESEARCHPATH /usr/lib/X11/%T/%N%S
- X append XFILESEARCHPATH $OPENWINHOME/lib/%T/%N%S
- X
- X if [ $NOSUNVIEW = 1 ]; then
- X***************
- X*** 149,159 ****
- X fi
- X
- X case "$MANPATH" in
- X! "") MANPATH="$OPENWINHOME/share/man:/usr/man" ;;
- X! *) prepend MANPATH $OPENWINHOME/share/man ;;
- X esac
- X
- X
- X # If the user doesn't have a .xinitrc and they haven't specified an alternate
- X # one via XINITRC, then set XINITRC to the system default Xinitrc
- X if [ ! -f $HOME/.xinitrc -a -z "${XINITRC}" ]; then
- X--- 183,212 ----
- X fi
- X
- X case "$MANPATH" in
- X! "") MANPATH="/usr/local/man:/usr/man" ;;
- X! *) ;;
- X esac
- X+ prepend MANPATH /usr/lib/X11/man:$OPENWINHOME/share/man
- X
- X
- X+ # Check existing .xinitrc
- X+ if [ -f $HOME/.xinitrc ]; then
- X+ if [ ! `fgrep -c -e "OpenWindows V3 startup script" $HOME/.xinitrc` = 1 ]; then
- X+ echo "You have an old .xinitrc file which is not suitable for the use" >/dev/tty
- X+ echo "with OpenWindows Version 3. " >/dev/tty
- X+ echo "Press <RETURN> to rename .xinitrc to xinitrc.old and to continue." >/dev/tty
- X+ read line
- X+ mv -f $HOME/.xinitrc $HOME/xinitrc.old
- X+ echo mv -f .xinitrc xinitrc.old >/dev/tty
- X+ if [ -f $HOME/.xinitrc.old ]; then
- X+ echo "You also have a .xinitrc.old. - This is obsolete." >/dev/tty
- X+ echo "moving .xinitrc.old to xinitrc.old.old" >/dev/tty
- X+ mv -f .xinitrc.old xinitrc.old.old
- X+ fi
- X+ fi
- X+ fi
- X+
- X+
- X # If the user doesn't have a .xinitrc and they haven't specified an alternate
- X # one via XINITRC, then set XINITRC to the system default Xinitrc
- X if [ ! -f $HOME/.xinitrc -a -z "${XINITRC}" ]; then
- X***************
- X*** 162,176 ****
- X fi
- X
- X #
- X- # Check to see if OpenWindows is already running on requested DISPLAY
- X- #
- X- $OPENWINHOME/lib/checkOW $DISPLAY
- X- retval=$?
- X- if [ $retval -ne 1 ]; then
- X- err "There is already a server running on $DISPLAY"
- X- fi
- X-
- X- #
- X # Create magic cookie for authentication, and write server and client files.
- X #
- X if [ $NOAUTH -eq 0 ]; then
- X--- 215,220 ----
- X***************
- X*** 189,196 ****
- X unset err addpath append prepend
- X
- X # start up xinit and thus the server.
- X! $OPENWINHOME/bin/xinit -- ${SERVER-$OPENWINHOME/bin/xnews} $DISPLAY $PASSTHRU $AUTH
- X!
- X! rm -f $AUTHFNAME
- X
- X exit 0
- X--- 233,246 ----
- X unset err addpath append prepend
- X
- X # start up xinit and thus the server.
- X! if [ x${SERVER} = xnone ]; then
- X! /bin/sh $HOME/.xinitrc
- X! else
- X! $OPENWINHOME/bin/xinit -- ${SERVER-$OPENWINHOME/bin/xnews} \
- X! $DISPLAY $PASSTHRU $AUTH
- X! rm -f $AUTHFNAME
- X! kbd_mode -a
- X! /usr/ucb/clear
- X! fi
- X
- X exit 0
- X*** ./lib/Xinitrc.org Tue Apr 21 17:47:45 1992
- X--- ./lib/Xinitrc Tue Apr 21 17:47:09 1992
- X***************
- X*** 1,19 ****
- X! # .xinitrc - OpenWindows startup script.
- X
- X if [ -f $HOME/.Xdefaults ]; then
- X! xrdb $HOME/.Xdefaults # Load Users X11 resource database
- X else
- X! xrdb $OPENWINHOME/lib/Xdefaults # Load Default X11 resource database
- X fi
- X
- X $OPENWINHOME/lib/openwin-sys # OpenWindows system initialization
- X
- X! # SunView binary compatibility is default mode.
- X! [ -z "$NOSUNVIEW" -o "$NOSUNVIEW" -ne 1 ] && eval `svenv -env`
- X
- X! sleep 15 & pid=$! # OpenLook Window Manager
- X! olwm -syncpid $pid &
- X! wait $pid # Pause until olwm inits
- X
- X if [ -x $HOME/.openwin-init ]; then
- X $HOME/.openwin-init # Custom OpenWindows tools
- X--- 1,73 ----
- X! # .xinitrc - OpenWindows V3 startup script.
- X! # Modified by /r.s. - last on 2.3.92
- X! # - to use olvwm
- X! # - to use the other servers or no server at all
- X
- X if [ -f $HOME/.Xdefaults ]; then
- X! # Load Users X11 resource database
- X! xrdb -DCONSOLETYPE_$CONSOLETYPE -DHOME=$HOME $HOME/.Xdefaults
- X else
- X! # Load Default X11 resource database
- X! xrdb -DHOME=$HOME $OPENWINHOME/lib/Xdefaults
- X fi
- X
- X+ # set customization for hi-res or color
- X+ xrdb -merge <<'END_XRDB'
- X+ #if WIDTH == 1600
- X+ *customization: -WIDTH
- X+ #else
- X+ #ifdef COLOR
- X+ *customization: -color
- X+ #endif
- X+ #endif
- X+ END_XRDB
- X+
- X $OPENWINHOME/lib/openwin-sys # OpenWindows system initialization
- X
- X! case `xdpyinfo | egrep "^vendor string:"` in
- X! *X11/NeWS* )
- X! # Open Windows X11/NeWS server
- X! # SunView binary compatibility is default mode.
- X! [ -z "$NOSUNVIEW" -o "$NOSUNVIEW" -ne 1 ] && eval `svenv -env`
- X! ;;
- X! *MIT* )
- X! # MIT X11 server
- X
- X! # enable Alt_L key
- X! xmodmap -e 'add mod3 = Alt_L'
- X!
- X! ;;
- X! *Mac* )
- X! # Macintosh MacX Server
- X! xmodmap -e "keysym Delete = BackSpace Delete" \
- X! -e 'keysym F1 = Help'
- X! ;;
- X! esac
- X!
- X! # To keep the olwm root menu alive for additions by the X11 administrator
- X! # put sed-patches to openwin-menu into your $HOME/.openwin-menu.sed
- X! # A sample can be found in $OPENWINHOME/lib/openwin-menu.sed
- X!
- X! if [ -f $HOME/.openwin-menu.sed ]; then
- X! make -f $OPENWINHOME/lib/menu-Makefile # update menu file
- X! fi
- X!
- X! if [ x${X11WM:-} = x ]; then
- X! sleep 15 & pid=$! # OpenLook Window Manager
- X! $OPENWINHOME/bin/olvwm -syncpid $pid &
- X! wait $pid # Pause until olwm inits
- X! else
- X! eval exec ${X11WM} & # User defined Window Manager
- X! sleep 3
- X! fi
- X!
- X! # .openwin-init.extra:
- X! # Put here commands that are note by olvwm's "Save Workspace"
- X! if [ -f $HOME/.openwin-init.extra ]; then
- X! /bin/sh $HOME/.openwin-init.extra # extra tools e.g. xman
- X! else
- X! /bin/sh $OPENWINHOME/lib/openwin-init.extra
- X! fi
- X
- X if [ -x $HOME/.openwin-init ]; then
- X $HOME/.openwin-init # Custom OpenWindows tools
- X*** ./lib/menu-Makefile.org Tue Apr 21 17:47:46 1992
- X--- ./lib/menu-Makefile Tue Apr 21 17:47:11 1992
- X***************
- X*** 0 ****
- X--- 1,7 ----
- X+ all: $(HOME)/.openwin-menu
- X+
- X+ $(HOME)/.openwin-menu: $(OPENWINHOME)/lib/openwin-menu $(HOME)/.openwin-menu.sed
- X+ echo '# DO NOT EDIT - edit .openwin-menu.sed' > $(HOME)/.openwin-menu
- X+ sed -f $(HOME)/.openwin-menu.sed < $(OPENWINHOME)/lib/openwin-menu \
- X+ >> $(HOME)/.openwin-menu
- X+
- X*** ./lib/openwin-init.org Tue Apr 21 17:47:45 1992
- X--- ./lib/openwin-init Tue Apr 21 17:47:10 1992
- X***************
- X*** 1,5 ****
- X #! /bin/sh
- X! # @(#)openwin-init 23.9 91/09/14
- X # .openwin-init - OpenWindows initialization script.
- X # WARNING: This file is automatically generated.
- X # Any changes you make here will be lost!
- X--- 1,5 ----
- X #! /bin/sh
- X! # @(#)openwin-init 23.9 91/09/14 27.2.92 /rs
- X # .openwin-init - OpenWindows initialization script.
- X # WARNING: This file is automatically generated.
- X # Any changes you make here will be lost!
- X***************
- X*** 7,15 ****
- X # Note: toolwait is a utility to control client startup.
- X # For more information, see the toolwait(1) man page.
- X
- X!
- X! toolwait $OPENWINHOME/bin/cmdtool -Wp 0 0 -Ws 590 77 -C
- X! toolwait $OPENWINHOME/bin/filemgr -Wp 0 120 -Ws 590 300
- X
- X # To remove the online intro from the list of applications initially running,
- X # delete or comment out the next line.
- X--- 7,21 ----
- X # Note: toolwait is a utility to control client startup.
- X # For more information, see the toolwait(1) man page.
- X
- X! toolwait xman -geometry -160+0
- X! toolwait /usr/bin/X11/xterm -geometry 80x30+564+319 -xrm '*iconGeometry: +551-0'
- X! toolwait /usr/bin/X11/xbiff -geometry 65x68+917+81 -xrm '*iconGeometry: 32x32+456+848'
- X! toolwait textedit -Wp 549 87 -Ws 593 627 -WP 66 833 -Wi
- X! toolwait contool -Wp 0 0 -Ws 575 246 -WP 3 833 -Wi
- X! toolwait cmdtool -Wp 0 349 -Ws 593 448 -WP 347 833 +Wi
- X! toolwait filemgr -Wp 0 0 -Ws 590 300 -WP 276 833 +Wi -r -i 5
- X! toolwait clock -Wp 991 -23 -Ws 150 150 -WP 482 833 +Wi +Wn -digital +seconds -alarmtime 0:0
- X! toolwait cm -Wp 30 30 -WP 132 833 -Wi
- X
- X # To remove the online intro from the list of applications initially running,
- X # delete or comment out the next line.
- X*** ./lib/openwin-init.extra.org Tue Apr 21 18:01:28 1992
- X--- ./lib/openwin-init.extra Tue Apr 21 17:47:09 1992
- X***************
- X*** 0 ****
- X--- 1,3 ----
- X+ #!/bin/sh
- X+ # Extra startup file for programs that are not saved in .openwin-init
- X+ # by the "Save Workspace" feature of olvwm
- X*** ./lib/openwin-menu.sed.org Tue Apr 21 18:00:32 1992
- X--- ./lib/openwin-menu.sed Tue Apr 21 18:00:53 1992
- X***************
- X*** 0 ****
- X--- 1,2 ----
- X+ /RESTART/a\
- X+ "Exit WM..." WMEXIT
- END_OF_FILE
- if test 11142 -ne `wc -c <'OW3X11R5/ow3patch'`; then
- echo shar: \"'OW3X11R5/ow3patch'\" unpacked with wrong size!
- fi
- # end of 'OW3X11R5/ow3patch'
- fi
- if test -f 'OW3X11R5/install' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'OW3X11R5/install'\"
- else
- echo shar: Extracting \"'OW3X11R5/install'\" \(1673 characters\)
- sed "s/^X//" >'OW3X11R5/install' <<'END_OF_FILE'
- X#!/bin/sh
- X# move away Sun X11 libs
- X
- Xcd $OPENWINHOME/lib
- Xmkdir move-away
- Xmv lib{X,X11,Xau,Xaw,Xext,Xinput,Xmu,Xt}{_p.a,.*} move-away
- Xln -s move-away/libX.* .
- X
- X# Now OpenWindows and X11 programs run fine, but without compose key
- X# processing
- X
- X# owr script for running pgms with OW-supplied libs
- X
- Xcd $OPENWINHOME/bin
- X
- X# unpack file 'owr'
- X
- X# Contents: owr
- X# Wrapped by sinkwitz@lanzarote on Thu Mar 19 18:23:46 1992
- XPATH=/bin:/usr/bin:/usr/ucb ; export PATH
- Xif test -f 'owr' -a "${1}" != "-c" ; then
- X echo shar: Will not clobber existing file \"'owr'\"
- Xelse
- Xecho shar: Extracting \"'owr'\" \(447 characters\)
- Xsed "s/^X//" >'owr' <<'END_OF_FILE'
- XX#!/bin/sh
- XX# Helper script for programs which need the shared libraries
- XX# supplied with OpenWindows
- XX# 4.3.92 R. Sinkwitz
- XX
- XXexport PATH LD_LIBRARY_PATH
- XXPATH=$OPENWINHOME/bin:$PATH
- XXLD_LIBRARY_PATH=$OPENWINHOME/lib:$OPENWINHOME/lib/move-away:$LD_LIBRARY_PATH
- XXprogram=`basename $0`
- XXif [ $program = owr ]; then
- XX exec ${1+"$@"} # execute arguments
- XXelse
- XX exec `dirname $0`/.owrbin/${program} ${1+"$@"} # real program .owrbin/$program
- XXfi
- XEND_OF_FILE
- Xif test 447 -ne `wc -c <'owr'`; then
- X echo shar: \"'owr'\" unpacked with wrong size!
- Xfi
- Xchmod +x 'owr'
- X# end of 'owr'
- Xfi
- Xecho shar: End of shell archive.
- X
- Xmkdir .owrbin
- X
- X# auto-use owr for the following programs
- X# filemgr, olwm and cmdtool are omitted from this list, because this inhibits
- X# starting X11R5 programs from them.
- X
- Xfor i in xnews audiotool binder calctool clock cm colorchooser helpviewer \
- X iconedit mailtool pageview perfmeter pm printtool props \
- X snapshot tapetool textedit owplaces; do
- X mv $i .owrbin
- X ln -s owr $i
- Xdone
- X
- Xexit 0
- X
- END_OF_FILE
- if test 1673 -ne `wc -c <'OW3X11R5/install'`; then
- echo shar: \"'OW3X11R5/install'\" unpacked with wrong size!
- fi
- # end of 'OW3X11R5/install'
- fi
- if test -f 'OW3X11R5/README' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'OW3X11R5/README'\"
- else
- echo shar: Extracting \"'OW3X11R5/README'\" \(3125 characters\)
- sed "s/^X//" >'OW3X11R5/README' <<'END_OF_FILE'
- X-------------------------------------------------------------------------------
- X OpenWindows V3 and X11R5 coexistence
- X-------------------------------------------------------------------------------
- X
- XThis solution is contained in a patch and a script ( no guarantees ):
- X
- XTHE PATCH DOES THE FOLLOWING:
- X
- X(X11R5 assumed to be installed in /usr/{bin,lib}/X11 !!! )
- X
- X- X11R5 programs and shared libs are given precedence
- X
- X- openwin may be run with
- X '-server X' (servers different from 'xnews' are looked up in /usr/bin/X11')
- X or
- X '-server none' (server is assumed to be already running, DISPLAY variable
- X may be already valid or can be passed by '-display', useful for X-Terminals
- X or e.g.MacX)
- X A server different from 'xnews' will automatically set '-nosunview'
- X
- X- HELPPATH is prepended with /usr/lib/X11/help for local XView additions
- X
- X- XFILESEARCHPATH is prepended with default value so that you get a color
- X oclock on color displays (.xinitrc automatically sets '*customization: color'
- X on those)
- X
- X- MANPATH, if not set, defaults to /usr/local/man:/usr/man (not only /usr/man),
- X is prepended with /usr/lib/X11/man in addition to $OPENWINHOME/share/man
- X
- X- Version check on .xinitrc
- X
- X- window manager defaults to 'olvwm' (can be overridden by X11WM variable)
- X
- X- Extra Symbols 'HOME' and 'CONSOLETYPE_<VALUE>' (the first for a definition
- X of the Athena '*bitmapFilePath', the latter for compatibility with
- X Mark Moraes 'x11' startup)
- X
- X- '*customization' added as -color for color displays and as -1600 for wide
- X display (WIDTH=1600)
- X
- X- per server extra initialization for keyboard mappings (Alt for Xsun,
- X BackSpace and Help for MacX)
- X
- X- extra user initialization file .openwin-init.extra which is not overwritten
- X by 'save workspace' (user need not touch .xinitrc)
- X
- X- extra root menu modification file .openwin-menu.sed to keep the root menu
- X alive for administrator additions (contains 'sed'-patches)
- X
- XFiles patched or created:
- X
- X./bin/openwin
- X./lib/Xinitrc
- X./lib/openwin-init.extra
- X./lib/openwin-init
- X./lib/openwin-menu.sed
- X./lib/menu-Makefile
- X
- X
- X
- XTHE INSTALL SCRIPT DOES THE FOLLOWING:
- X
- X- moves away X11R4 libraries into $OPENWINHOME/lib/move-away
- X
- X- creates a wrapper command 'owr' to automatically run deskset pgms with
- X OW-shared libs
- X
- X
- XOBSERVATIONS:
- X
- X- Compose key and num-lock processing with the seems to be contained in Sun's
- X libX11.so.4.3 and thus remains to be available within DeskSet apps but not
- X with X11R5 apps.
- X
- X (Filemanager excluded to be able to run X11R5 programs)
- X With the xnews server keys R1 thru NumLock don't repeat.
- X
- X- vkbd support (PrSc key) is available with focus on
- X a XView-based appl. (PrSc must not repeat) You may install Alt_L and PrSc
- X as modifier.
- X
- XAny comments to this solution ?
- X
- XGreetings...
- X Rainer
- X
- X
- X--
- Xoooooo oooo Rainer Sinkwitz, Multimedia Lab sinkwitz@ifi.unizh.ch
- X $ $ $ " University of Zurich, Switzerland VOICE +41-1-257-4346
- X $"$$ """"$ Winterthurerstr. 190 FAX +41-1-363-00-35
- Xo$o "$o $ooo" CH-8057-Z\"urich sinkwitz%ifi.unizh.ch@relay.eu.net
- END_OF_FILE
- if test 3125 -ne `wc -c <'OW3X11R5/README'`; then
- echo shar: \"'OW3X11R5/README'\" unpacked with wrong size!
- fi
- # end of 'OW3X11R5/README'
- fi
- echo shar: End of shell archive.
- exit 0
-