Difference between revisions of "Disabling Font Smoothing"

(Linux)
(Linux)
Line 23: Line 23:
  
 
If you really like Tahoma, you can install it by following the instructions located on [http://ubuntuforums.org/showthread.php?t=82318 the Ubuntu forums].
 
If you really like Tahoma, you can install it by following the instructions located on [http://ubuntuforums.org/showthread.php?t=82318 the Ubuntu forums].
 +
 +
===Mac OS===
 +
You can increase the default size at which Mac OS will not smooth fonts whose size is lower than the specified size. To read the current setting:
 +
<code>
 +
defaults read -g AppleAntiAliasingThreshold</code>
 +
To set the size to N points, do the following:
 +
<code>
 +
sudo defaults write -g AppleAntiAliasingThreshold N</code>
 +
 +
However, you will see that like on Windows Vista, that most of the Macintosh control do not respect this settings and therefore menus et lists still use smooth fonts.
 +
 +
Look what people are forced to do to disable smoothing by following [http://www.partlyhuman.com/blog/roger/aliased-text-mac-eclipse| this link].
 +
 +
===Windows XP===
 +
Open the Display control panel, go to `Appearance' and then choose...
 +
 +
===Windows Vista===
 +
You can simply do like Windows XP, but many applications do not respect the setting and therefore Vista will be very ugly because of the mixture of smoothed and non-smoothed font.

Revision as of 08:06, 9 April 2008


To disable font smoothing altogether here are a few things you may want to know.

Linux

Edit the file ~/.fonts.conf and add the following content:

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
        <match target="font" >
                <edit mode="assign" name="antialias">
                        <bool>false</bool>
                </edit>
        </match>
</fontconfig>

Because most Linux systems comes with ugly font when `antialias' is disabled, you can download some Microsoft fonts such as Arial, Trebuchet, Verdana, Courrier New, .... On an ubuntu system, one only has to do the following:

sudo apt-get install msttcorefonts

If you really like Tahoma, you can install it by following the instructions located on the Ubuntu forums.

Mac OS

You can increase the default size at which Mac OS will not smooth fonts whose size is lower than the specified size. To read the current setting:

defaults read -g AppleAntiAliasingThreshold

To set the size to N points, do the following:

sudo defaults write -g AppleAntiAliasingThreshold N

However, you will see that like on Windows Vista, that most of the Macintosh control do not respect this settings and therefore menus et lists still use smooth fonts.

Look what people are forced to do to disable smoothing by following this link.

Windows XP

Open the Display control panel, go to `Appearance' and then choose...

Windows Vista

You can simply do like Windows XP, but many applications do not respect the setting and therefore Vista will be very ugly because of the mixture of smoothed and non-smoothed font.