| Are you running CDE? For CDE, create /etc/dt/config, copy /usr/dt/config/Xsetup
to /etc/dt/config/Xsetup. Hack this file to set the font path so
that the 75dpi fonts are first. For example:
# check if the system has a Low or High Resolution Monitor
# - High Resolution (1280 x 1024) uses 100 dpi fonts.
# - Medium Resolution (1024 x 864 ) uses 75 dpi fonts.
# - Low Resolution (1024 x 768 or lower) uses 75 dpi fonts.
# This will only switch to 75dpi fonts if there is a low or medium
# resolution monitor found.
#
#
fd=""
prefplist=""
appfplist=""
setfont="No"
fontdpi="100dpi"
othrfnt="75dpi"
FONTLIB="/usr/lib/X11/fonts"
I18N="/usr/i18n/${FONTLIB}/decwin"
pixwidth=`/usr/sbin/sizer -gr | awk -Fx ' { print $1 } ' `
if [ ${pixwidth} -lt 1280 ]
then
fontdpi="75dpi"
othrfnt="100dpi"
fi
#[pjw] hardwire 75dpi
fontdpi="75dpi"
othrfnt="100dpi"
I added the last three lines to that section of the file. You can
also optionally copy /usr/dt/config/Xserver to /etc/dt/config/Xservers
and change the Xserver startup line to include -dpi 75. This makes
the server and the fonts agree (which is important for some WYSIWYG
applications).
pete
|