/etc/X11/xinit/xinitrc
/etc/X11/xinit/xinitrc
- Subject: /etc/X11/xinit/xinitrc
- From: Gary Tate <email@hidden>
- Date: Wed, 26 Feb 2003 14:37:20 -0800
This is the standard xinitrc provided:
gtate% more /etc/X11/xinit/xinitrc
#!/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
# start some nice programs
xterm &
# start the window manager
exec quartz-wm
------------------------------
When this is sourced I get the following errors:
[gazzaroonii:~] gtate% source /etc/X11/xinit/xinitrc
userresources=/Users/gtate/.Xresources: Command not found.
usermodmap=/Users/gtate/.Xmodmap: Command not found.
sysresources=XINITDIR/.Xresources: Command not found.
sysmodmap=XINITDIR/.Xmodmap: Command not found.
sysresources: Undefined variable.
[gazzaroonii:~] gtate%
Should I be worrying about these?
Gary
_______________________________________________
x11-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/x11-users
X11 for Mac OS X FAQ: http://developer.apple.com/qa/qa2001/qa1232.html
Report issues, request features, feedback: http://developer.apple.com/bugreporter
Do not post admin requests to the list. They will be ignored.