-
-
Save shizonic/4c2b62a5148797ab18ab5fd3d1ed5758 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