[629] in netbsd-help mailing list archive
Re: courier fonts munged - part 2
daemon@ATHENA.MIT.EDU (Greg Hudson)
Wed Jan 24 01:05:57 1996
To: Eric Ding <ericding@MIT.EDU>
Cc: netbsd-help@MIT.EDU
In-Reply-To: Your message of "Wed, 24 Jan 1996 00:48:04 EST."
<9601240548.AA09686@unca-donald.MIT.EDU>
Date: Wed, 24 Jan 1996 01:01:36 EST
From: Greg Hudson <ghudson@MIT.EDU>
> I'm not sure what's up still,... but I've found a fix, I guess. I
> took /usr/X11R6/lib/X11/fonts/Type1/ out of the font path, and the
> font problem disappeared.
There seems to be a bug in XFree86 that causes it to use a scaled font
in place of the fixed-size font in certain cases. (I think it's a bug
because I would get the fixed-size font for a while, and then for no
obvious reason I'd start getting the scaled font in new windows I
created.) I've taken to putting the following lines in my .xsession:
if ($hosttype == inbsd) then
xset -fp /usr/X11R6/lib/X11/fonts/Type1/ >& /dev/null
xset -fp /usr/X11R6/lib/X11/fonts/Type1 >& /dev/null
xset -fp /usr/X11/lib/X11/fonts/Type1/ >& /dev/null
xset -fp /usr/X11/lib/X11/fonts/Type1 >& /dev/null
endif