Skip to content

Instantly share code, notes, and snippets.

View JoveYu's full-sized avatar

Jove Yu JoveYu

  • Wuhan ,China
  • 04:43 (UTC +08:00)
View GitHub Profile
@JoveYu
JoveYu / 75-noto-color-emoji.conf
Created June 2, 2024 01:36 — forked from charveey/75-noto-color-emoji.conf
How to better enable Color Emojis! Fontconfig ships with some config files that are simply not enough to enable color emojis globally (the 45-generic.conf and 60-generic.conf) and just by installing Noto Color Emoji font will also not enable colorful emojis on all websites or some apps. However, this can easily be configured by creating a config…
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- Add generic family. -->
<match target="pattern">
<test qual="any" name="family"><string>emoji</string></test>
<edit name="family" mode="assign" binding="same"><string>Noto Color Emoji</string></edit>
</match>