Created
June 11, 2017 05:29
-
-
Save ggreer/8c7277affa4ca3175815edb68f048d11 to your computer and use it in GitHub Desktop.
How to disable anti-aliasing & subpixel hinting for a specific font.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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