Created
February 2, 2019 13:05
-
-
Save rikvanderkemp/a66dc8d8a1df7cdc244a9eac7a772693 to your computer and use it in GitHub Desktop.
Font config for emojis
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 mode="prepend" binding="strong" name="family"> | |
<string>Noto Color Emoji</string> | |
</edit> | |
</match> | |
<match> | |
<test name="family"> | |
<string>serif</string> | |
</test> | |
<edit mode="prepend" binding="strong" name="family"> | |
<string>Noto Color Emoji</string> | |
</edit> | |
</match> | |
<match> | |
<test name="family"> | |
<string>Apple Color Emoji</string> | |
</test> | |
<edit mode="prepend" binding="strong" name="family"> | |
<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