Skip to content

Instantly share code, notes, and snippets.

@GEOFBOT
Last active August 29, 2020 05:15
Show Gist options
  • Save GEOFBOT/17b89aab96bf59c658fa43079d2106f6 to your computer and use it in GitHub Desktop.
Save GEOFBOT/17b89aab96bf59c658fa43079d2106f6 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
Make Noto Color Emoji the initial fallback font for sans-serif, sans, and
monospace.
-->
<match>
<test name="family"><string>sans-serif</string></test>
<edit name="family" mode="prepend">
<string>Noto Color Emoji</string>
</edit>
</match>
<match>
<test name="family"><string>serif</string></test>
<edit name="family" mode="prepend">
<string>Noto Color Emoji</string>
</edit>
</match>
<match>
<test name="family"><string>monospace</string></test>
<edit name="family" mode="prepend">
<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