Forked from IgnoredAmbience/99-noto-mono-color-emoji.conf
Last active
March 8, 2021 23:49
-
-
Save amadeusine/8468f53a991077bd25715b78fc9d0a2a to your computer and use it in GitHub Desktop.
Noto Emoji Color fontconfig for Konsole
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" encoding="UTF-8"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <!-- | |
| Fira Code (Nerd Font) + Blobmoji Font Configuration. | |
| Currently the only Terminal Emulator I'm aware that supports colour fonts is Konsole. | |
| Usage: | |
| 0. Ensure that the Noto fonts are installed on your machine. | |
| 1. Install this file to ~/.config/fontconfig/conf.d/99-fira-code-color-emoji.conf | |
| 2. Run `fc-cache` | |
| 3. Set Konsole to use "Noto Mono" as the font. | |
| 4. Restart Konsole. | |
| --> | |
| <fontconfig> | |
| <match> | |
| <test name="family"><string>FiraCode Nerd Font Mono</string></test> | |
| <edit name="family" mode="prepend" binding="strong"> | |
| <string>Blobmoji</string> | |
| </edit> | |
| </match> | |
| </fontconfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment