Difference between revisions of "Disabling Font Smoothing"

(Initial Page)
 
(Linux)
Line 16: Line 16:
 
</fontconfig>
 
</fontconfig>
 
</code>
 
</code>
 +
 +
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:
 +
 +
<code>
 +
sudo apt-get install msttcorefonts</code>
 +
 +
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].

Revision as of 07:52, 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.