Always add the family name from spacing=100

This commit is contained in:
Pierre Ducroquet 2021-08-25 10:43:20 +02:00
parent 686739af91
commit 9a6ad6f1c5
1 changed files with 3 additions and 12 deletions

View File

@ -1,24 +1,15 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> <!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig> <fontconfig>
<description>Add mono to the family when no generic name and spacing is 100</description> <description>Add mono to the family when spacing is 100</description>
<!-- <!--
If the font has no generic name and spacing 100, add mono If the request specifies spacing 100, add monospace to family
--> -->
<match target="pattern"> <match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<test qual="any" name="spacing" compare="eq"> <test qual="any" name="spacing" compare="eq">
<int>100</int> <int>100</int>
</test> </test>
<edit name="family" mode="append_last"> <edit name="family" mode="prepend">
<string>monospace</string> <string>monospace</string>
</edit> </edit>
</match> </match>