Mercurial > repos > other > linux
view 10-noto-emoji.conf @ 124:c3320f06d412
Add a minimal global gitignore
We could add more, but this is intended for things that only I
need to ignore (such as build directories that other people
might do differently) rather than stuff that everyone wants to do
(like ignoring .pyc files or log files in the project)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Wed, 13 Mar 2019 19:19:50 +0000 |
parents | 220ca3e2e115 |
children | 0354415a8e48 |
line wrap: on
line source
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <alias> <family>sans-serif</family> <prefer> <family>Noto Color Emoji</family> <family>Noto Sans</family> </prefer> </alias> <alias> <family>serif</family> <prefer> <family>Noto Color Emoji</family> <family>Noto Serif</family> </prefer> </alias> <alias> <family>monospace</family> <prefer> <family>Noto Color Emoji</family> <family>Noto Mono</family> </prefer> </alias> <match> <test name="family" compare="contains"> <string>emoji</string> </test> <edit name="family" mode="prepend" binding="same"> <string>Noto Color Emoji</string> </edit> </match> </fontconfig>