Created
March 30, 2018 08:57
-
-
Save pcolby/dc3a39ab2b2fbbf6f85419cd07a226eb 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' encoding='UTF-8'?> | |
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
<fontconfig> | |
<!-- | |
<match> | |
<test name="family"><string>sans-serif</string></test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>Noto Color Emoji</string> | |
</edit> | |
</match> | |
<match> | |
<test name="family"><string>serif</string></test> | |
<edit name="family" mode="prepend" binding="strong"> | |
<string>Noto Color Emoji</string> | |
</edit> | |
</match> | |
--> | |
<alias> | |
<family>sans-serif</family> | |
<prefer> | |
<family>NotoSans</family> | |
<family>NotoColorEmoji</family> | |
<family>NotoEmoji</family> | |
</prefer> | |
</alias> | |
<alias> | |
<family>serif</family> | |
<prefer> | |
<family>NotoSerif</family> | |
<family>NotoColorEmoji</family> | |
<family>NotoEmoji</family> | |
</prefer> | |
</alias> | |
<match> | |
<test name="family"> | |
<string>Apple Color Emoji</string> | |
</test> | |
<edit binding="strong" name="family" mode="prepend"> | |
<string>Noto Color Emoji</string> | |
</edit> | |
</match> | |
<dir>~/.fonts</dir> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment