To view parent comment, click here.
To read all comments associated with this story, please click here.
Here's my ~/.fonts.conf. Maybe it will help you on your quest:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<edit mode="assign" name="rgba" >
<const>rgb</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hinting" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="autohint" >
<bool>false</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hintstyle" >
<const>hintfull</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>false</bool>
</edit>
</match>
<match target="font" >
<test qual="any" name="size" target="font" compare="more_eq">
<int>11</int>
</test>
<test qual="any" name="size" target="font" compare="less">
<int>7</int>
</test>
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<test qual="any" name="weight" target="font" compare="eq">
<const>bold</const>
</test>
<edit mode="assign" name="antialias" >
<bool>false</bool>
</edit>
<edit mode="assign" name="autohint" >
<bool>false</bool>
</edit>
</match>
<match target="font" >
<test qual="any" name="slant" target="font" compare="eq">
<const>italic</const>
</test>
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
</fontconfig>






Member since:
2006-01-02
How do you still have AA in the browser even if you have it turned off elsewhere?