This actually worked halfway. I've attached my ~/.xinitrc below. It is a copy of the global xinitrc, and I've added the two xset commands. The effect is that the bell gets set, but not the font path. There seems to be a dependency on where in the file I add the lines: if I put them at the bottom, it doesn't work at all (X11 doesn't start).
So, if I could get both the bell and the font path working, that'd be really great. Does anyone have any insights on where to put the lines so that both work?
Oh, and by the way, what's with the three xterms and the one xclock that's being called in the .xinitrc? I don't quite understand what this file does.
Thanks for you suggestions,
Michael
============ %< =============
#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11/lib/X11/xinit/.Xmodmap
xset -b
xset fp+ /opt/local/X11R6/lib/X11/fonts/local
# merge in defaults and keymaps
if [ -f $sysresources ]; then
if [ -x /usr/bin/cpp ] ; then
xrdb -merge $sysresources
else
xrdb -nocpp -merge $sysresources
fi
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
if [ -x /usr/bin/cpp ] ; then
xrdb -merge "$userresources"
else
xrdb -nocpp -merge "$userresources"
fi
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /usr/X11/lib/X11/xinit/xinitrc.d ] ; then
for f in /usr/X11/lib/X11/xinit/xinitrc.d/*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
twm &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50
49451 &
xterm -geometry 80x20+494-0 &
exec xterm -geometry 80x66
00 -name login