Created
March 22, 2018 21:28
-
-
Save raku-cat/7c33c945ba007184f35925c313269f08 to your computer and use it in GitHub Desktop.
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> | |
<edit mode="prepend" name="family"><string>Source Sans Pro</string></edit> | |
</match> | |
<match target="pattern"> | |
<test qual="any" name="family"><string>serif</string></test> | |
<edit name="family" mode="assign" binding="same"><string>Source Serif Pro</string></edit> | |
<edit name="family" mode="prepend_first"><string>Noto Color Emoji</string></edit> | |
</match> | |
<match target="pattern"> | |
<test qual="any" name="family"><string>sans-serif</string></test> | |
<edit name="family" mode="assign" binding="same"><string>Source Sans Pro</string></edit> | |
<edit name="family" mode="prepend_first"><string>Noto Color Emoji</string></edit> | |
</match> | |
<match target="pattern"> | |
<test qual="any" name="family"><string>monospace</string></test> | |
<edit name="family" mode="assign" binding="same"><string>Input Mono</string></edit> | |
<edit name="family" mode="prepend_first"><string>Noto Color Emoji</string></edit> | |
</match> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment