Created
October 19, 2019 22:41
-
-
Save tpope/ff5b151e89b7b8030d4fc4f90b8f70ef to your computer and use it in GitHub Desktop.
Fix Chrome's chrome using mono-chrome emoji
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"?> | |
<!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