update: rename filedir to work with new version of leaf

This commit is contained in:
2026-01-18 20:10:14 -05:00
parent 58c8a7a42c
commit b4192b3099
129 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
:
<!-- This adds Noto Color Emoji as a fallback font for all of the default font families;
When enabled any **missing** glyphs from the system font will be rendered using Noto Color Emoji in (e.g.)
Konsole, Firefox, etc. It _might_ impact web rendering if other fonts would usually be preferred
but as it's only doing replacements for missing glyphs we're really just supplementing
the existing fallback logic -->
<match target="pattern">
<test name="family"><string>sans</string></test>
<edit name="family" mode="append"><string>Noto Color Emoji</string></edit>
</match>
<match target="pattern">
<test name="family"><string>serif</string></test>
<edit name="family" mode="append"><string>Noto Color Emoji</string></edit>
</match>
<match target="pattern">
<test name="family"><string>sans-serif</string></test>
<edit name="family" mode="append"><string>Noto Color Emoji</string></edit>
</match>
<match target="pattern">
<test name="family"><string>monospace</string></test>
<edit name="family" mode="append"><string>Noto Color Emoji</string></edit>
</match>
</fontconfig>