Skip to content

Instantly share code, notes, and snippets.

@ggreer
Created June 11, 2017 05:29
Show Gist options
  • Save ggreer/8c7277affa4ca3175815edb68f048d11 to your computer and use it in GitHub Desktop.
Save ggreer/8c7277affa4ca3175815edb68f048d11 to your computer and use it in GitHub Desktop.
How to disable anti-aliasing & subpixel hinting for a specific font.
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="font">
<test name="family" qual="any" compare="eq">
<string>ProggyTinyTTSZ</string>
</test>
<edit mode="assign" name="antialias">
<bool>false</bool>
</edit>
<edit mode="assign" name="hinting">
<bool>false</bool>
</edit>
</match>
</fontconfig>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment