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:
authorBrad Erickson <eosrei@gmail.com>2016-02-12 10:27:18 +0300
committerBrad Erickson <eosrei@gmail.com>2016-02-16 11:45:20 +0300
commit25791621a643b156b4f333fdecab736c3b289c83 (patch)
tree16132bfc92cb64ceb183e792291d1eea067ea32f
parentea4d06187eb67cbe34ec813930a84d2096407307 (diff)
readme: Add Linux install details
-rw-r--r--README.md33
1 files changed, 31 insertions, 2 deletions
diff --git a/README.md b/README.md
index 41d34e1..30ddaae 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,34 @@
# Symbola Color Emoji
-A SVG-in-OpenType color emoji font starting with the "free for any use" Symbola
-font and adding the colorful Emoji One SVG emojis where possible.
+A SVG-in-OpenType color emoji font created by starting with the "free for any use"
+Symbola font and adding the colorful Emoji One SVG emojis where possible.
+# Usage (Linux)
+
+1. Store the font file in your `~/.fonts/` directory.
+2. Create a fontconfig directory:
+```sh
+mkdir -p `~/.config/fontconfig/`
+```
+
+3. Override your defaults by creating a `fonts.conf`
+```xml
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
+<!-- -->
+<fontconfig>
+ <!-- Generic name aliasing -->
+ <alias>
+ <family>sans-serif</family>
+ <prefer>
+ <family>Symbola</family>
+ </prefer>
+ </alias>
+ <alias>
+ <family>serif</family>
+ <prefer>
+ <family>Symbola</family>
+ </prefer>
+ </alias>
+</fontconfig>
+```