mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
78efd88e4c
a/less-668-x86_64-2.txz: Rebuilt. I have tried to like the lesspipe.sh from https://github.com/wofr06 since it was switched to about 6 months ago, but it's just not working out here -- trying to look at fontconfig *.conf files was the last straw for me. So, I'm changing lesspipe.sh back to the Slackware version (less is more ;-). The lesspipe-wofr06.sh will still be included (and in fact it was upgraded to lesspipe-2.16), so if you prefer it feel free to relink to it. l/fluidsynth-2.4.1-x86_64-1.txz: Upgraded. l/spirv-llvm-translator-19.1.2-x86_64-1.txz: Upgraded. x/noto-emoji-2.047-noarch-1.txz: Upgraded. x/noto-fonts-ttf-2024.12.01-noarch-1.txz: Upgraded.
27 lines
775 B
XML
27 lines
775 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
|
|
|
<!--
|
|
Set Noto Color Emoji as fallback for Noto family
|
|
-->
|
|
|
|
<fontconfig>
|
|
<match target="scan">
|
|
<test name="family"><string>Noto Color Emoji</string></test>
|
|
<edit name="charset" mode="assign">
|
|
<minus>
|
|
<name>charset</name>
|
|
<charset><range>
|
|
<int>0x0000</int>
|
|
<int>0x00FF</int>
|
|
</range></charset>
|
|
</minus>
|
|
</edit>
|
|
</match>
|
|
<match>
|
|
<test name="family" compare="contains"><string>Noto </string></test>
|
|
<edit name="family" mode="append" binding="weak">
|
|
<string>Noto Color Emoji</string>
|
|
</edit>
|
|
</match>
|
|
</fontconfig>
|