Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/13rac1/emojione-color-font.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIBBoard <github@ibboard.co.uk>2016-03-08 00:02:51 +0300
committerBrad Erickson <eosrei@gmail.com>2016-03-08 00:15:43 +0300
commit88ab909a72aaae8ee0e2ec748946df4071daef65 (patch)
treeb5e1923a5799ef068e27c01592c8a7f5be46c7c5 /README.md
parent24eb0c24b01d8f3fd0f26ae2f948156564c40c43 (diff)
readme: Add Apple Color Emoji override for Linux
Fixes #11
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9bd353e..dca869e 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,10 @@ The font can be installed and set as the default Emoji font system wide.
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
- <!-- Make Emoji One Color the initial fallback font-->
+ <!--
+ Make Emoji One Color the initial fallback font for sans-serif, sans, and
+ monospace. Override any specific requests for Apple Color Emoji.
+ -->
<match>
<test name="family"><string>sans-serif</string></test>
<edit name="family" mode="prepend" binding="strong">
@@ -84,6 +87,12 @@ The font can be installed and set as the default Emoji font system wide.
<string>Emoji One Color</string>
</edit>
</match>
+ <match>
+ <test name="family"><string>Apple Color Emoji</string></test>
+ <edit name="family" mode="prepend" binding="strong">
+ <string>Emoji One Color</string>
+ </edit>
+ </match>
</fontconfig>
```