CODE
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/local.conf file for local customizations -->
<fontconfig>
<!-- Use the Autohinter -->
<match target="pattern">
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<!-- Disable anti-aliasing for bold fonts -->
<match target="font">
<test name="weight" compare="more">
<const>medium</const>
</test>
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
</match>
<!-- Disable anti-aliasing for fonts that are size <=10 -->
<match target="pattern">
<test qual="any" name="size" compare="less_eq">
<int>10</int>
</test>
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/local.conf file for local customizations -->
<fontconfig>
<!-- Use the Autohinter -->
<match target="pattern">
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<!-- Disable anti-aliasing for bold fonts -->
<match target="font">
<test name="weight" compare="more">
<const>medium</const>
</test>
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
</match>
<!-- Disable anti-aliasing for fonts that are size <=10 -->
<match target="pattern">
<test qual="any" name="size" compare="less_eq">
<int>10</int>
</test>
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
Here is mine, I have been working on trying to get fonts looking perfect. I am wondering if anybody has gotten their fonts "perfect" and would like to share their config file.