Created
August 7, 2017 19:45
-
-
Save oxidist/fcb3656b0f433316b7c9d4ffa4601520 to your computer and use it in GitHub Desktop.
fonts.conf
This file contains 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" encoding="UTF-8" standalone="no"?> | |
<fontconfig> | |
<dir>~/.fonts</dir> | |
<match> | |
<test name="family"> | |
<string>sans-serif</string> | |
</test> | |
<edit binding="strong" mode="prepend" name="family"> | |
<string>Lucida Grande</string> | |
</edit> | |
</match> | |
<match> | |
<test name="family"> | |
<string>serif</string> | |
</test> | |
<edit binding="strong" mode="prepend" name="family"> | |
<string>Apple Garamond</string> | |
</edit> | |
</match> | |
<match> | |
<test name="family"> | |
<string>monospace</string> | |
</test> | |
<edit binding="strong" mode="prepend" name="family"> | |
<string>Fira Mono Medium</string> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit mode="assign" name="antialias"> | |
<bool>true</bool> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit mode="assign" name="hinting"> | |
<bool>true</bool> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit mode="assign" name="hintstyle"> | |
<const>hintslight</const> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit mode="assign" name="rgba"> | |
<const>rgb</const> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit mode="assign" name="lcdfilter"> | |
<const>lcddefault</const> | |
</edit> | |
</match> | |
<match target="font"> | |
<edit mode="assign" name="embeddedbitmap"> | |
<bool>false</bool> | |
</edit> | |
</match> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment