#!/bin/sh # # xinitrc # # first set the bare minimum localprefix=/usr/local x11=${localprefix}/x11 OPENWINHOME=/usr/openwin wpath=${x11}/bin:${OPENWINHOME}/bin XFILESEARCHPATH=${x11}/lib/X11/%T/%N%C:${x11}/lib/X11/%T/%N:${OPENWINHOME}/lib/locale/%L/%T/%N%S:${OPENWINHOME}/lib/%T/%N%S export x11 OPENWINHOME XFILESEARCHPATH sysresources=$x11/lib/xinit/Xdefaults.ow35 userresources=$HOME/.Xdefaults sysmodmap=$x11/lib/xinit/Xmodmap usermodmap=$HOME/.Xmodmap syslauncherrc=$x11/lib/launcher/system.launchrc userlauncherrc=$HOME/.launcherrc if [ -f $userresources ]; then xrdb $userresources else xrdb $sysresources fi if [ -x $HOME/.openwin-init ]; then $HOME/.openwin-init else xterm -geo 80x34+110+66 & mailtool -WL MailTool & xclock -background '#40a0c0' -foreground black & fi exec olwm # shouldn't get here exit 1