Created
September 3, 2014 15:02
-
-
Save jbernhard/fd1567a514cb6f30ac55 to your computer and use it in GitHub Desktop.
Scale font size, useful for hidpi.
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'?> | |
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
<fontconfig> | |
<match target="font"> | |
<test name="family"> | |
<string>Inconsolatazi4</string> | |
</test> | |
<edit name="pixelsize" mode="assign"> | |
<times> | |
<name>pixelsize</name> | |
<double>1.25</double> | |
</times> | |
</edit> | |
</match> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment