Skip to content

Instantly share code, notes, and snippets.

@Ambro17
Created December 31, 2019 01:54
Show Gist options
  • Save Ambro17/80bce76d07a6eb74323db2ca9b887263 to your computer and use it in GitHub Desktop.
Save Ambro17/80bce76d07a6eb74323db2ca9b887263 to your computer and use it in GitHub Desktop.
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="scan">
<test name="family">
<string>Noto Color Emoji</string>
</test>
<edit name="scalable" mode="assign">
<bool>true</bool>
</edit>
<edit name="pixelsize" mode="assign">
<double>18</double>
</edit>
</match>
<match>
<test name="family">
<string>sans-serif</string>
</test>
<edit name="family" binding="weak" mode="prepend">
<string>Noto Color Emoji</string>
</edit>
</match>
<match>
<test name="family">
<string>serif</string>
</test>
<edit name="family" binding="weak" mode="prepend">
<string>Noto Color Emoji</string>
</edit>
</match>
<match>
<test name="family">
<string>Apple Color Emoji</string>
</test>
<edit name="family" binding="strong" 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