Created
May 14, 2013 11:38
-
-
Save jefferyto/5575304 to your computer and use it in GitHub Desktop.
Use Symbola over Android Emoji whenever possible in Ubuntu (and possibly other distros). Save as ~/.config/fontconfig (>=12.10) or ~/.fonts.conf (<=12.04), or save to the appropriate place in /etc to apply system-wide
This file contains hidden or 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> | |
<!-- Prefer Symbola over Android Emoji (or any other emoji font) --> | |
<alias> | |
<family>serif</family> | |
<accept> | |
<family>Symbola</family> | |
</accept> | |
</alias> | |
<alias> | |
<family>sans-serif</family> | |
<accept> | |
<family>Symbola</family> | |
</accept> | |
</alias> | |
<alias> | |
<family>monospace</family> | |
<accept> | |
<family>Symbola</family> | |
</accept> | |
</alias> | |
</fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment