Created
October 18, 2019 15:32
-
-
Save sudhirkhanger/1e6210af096032f9885ab5a0f9b8e22c to your computer and use it in GitHub Desktop.
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> | |
<dir>~/.fonts</dir> | |
<match target="font"> | |
<edit name="hinting" mode="assign"> | |
<bool>true</bool> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit name="hintstyle" mode="assign"> | |
<const>hintslight</const> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit name="antialias" mode="assign"> | |
<bool>true</bool> | |
</edit> | |
</match> | |
<match target="font"> | |
<test qual="any" name="size" compare="more_eq"> | |
<double>0</double> | |
</test> | |
<test qual="any" name="size" compare="less_eq"> | |
<double>99</double> | |
</test> | |
<edit name="antialias" mode="assign"> | |
<bool>false</bool> | |
</edit> | |
</match> | |
<match target="font"> | |
<test qual="any" name="pixelsize" compare="more_eq"> | |
<double>0</double> | |
</test> | |
<test qual="any" name="pixelsize" compare="less_eq"> | |
<double>132</double> | |
</test> | |
<edit name="antialias" mode="assign"> | |
<bool>false</bool> | |
</edit> | |
</match> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment