Skip to content
This repository has been archived by the owner on Nov 10, 2018. It is now read-only.

Commit

Permalink
readme: Add Apple Color Emoji override for Linux
Browse files Browse the repository at this point in the history
Fixes #11
  • Loading branch information
IBBoard authored and 13rac1 committed Mar 7, 2016
1 parent 24eb0c2 commit 88ab909
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -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>
```

Expand Down

0 comments on commit 88ab909

Please sign in to comment.