Skip to content

Instantly share code, notes, and snippets.

@tpope
Created October 19, 2019 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tpope/ff5b151e89b7b8030d4fc4f90b8f70ef to your computer and use it in GitHub Desktop.
Save tpope/ff5b151e89b7b8030d4fc4f90b8f70ef to your computer and use it in GitHub Desktop.
Fix Chrome's chrome using mono-chrome emoji
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="pattern">
<test qual="any" name="family">
<string>Symbola</string>
</test>
<test qual="any" name="prgname" compare="contains">
<string>chrom</string>
</test>
<edit name="family" mode="prepend" binding="same">
<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