Return to MacGDE
Return to Installation

#!/bin/sh # $Id: xinitrc,v 1.1 2003/01/29 00:07:55 jharper Exp $ userresources=$HOME/.Xresources usermodmap=$HOME/.Xmodmap sysresources=XINITDIR/.Xresources sysmodmap=XINITDIR/.Xmodmap # merge in defaults and keymaps if [ -f $sysresources ]; then xrdb -merge $sysresources fi if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi if [ -f $userresources ]; then xrdb -merge $userresources fi if [ -f $usermodmap ]; then xmodmap $usermodmap fi xrdb -nocpp -load /usr/X11R6/lib/X11/xinit/Xresources # start some nice programs xterm -ls & # start the window manager exec quartz-wm