I've fully updated many packages.
Now bold font display on my screen is too bold....
any solution?
thx
Now bold font display on my screen is too bold....
any solution?
thx
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <match target="font" > <test name="family" > <string>AR PL ShanHeiSun Uni</string> <string>AR PL ShanHeiSun Uni MBE</string> </test> <!-- check to see if the pattern requested --> <test compare="more" target="pattern" name="weight" > <const>medium</const> </test> <!-- pretend the font is bold now --> <edit mode="assign" name="embolden" > <bool>true</bool> </edit> </match> <!-- Disable antialias feature of AR PL ShanHeiSun Uni when pixelsize less than 17 --> <match target="font" > <test name="family" > <string>AR PL ShanHeiSun Uni</string> <string>AR PL ShanHeiSun Uni MBE</string> </test> <edit name="antialias" > <bool>false</bool> </edit> <edit name="hinting" > <bool>true</bool> </edit> <edit name="autohint" > <bool>false</bool> </edit> </match> <match target="font" > <test name="family" > <string>AR PL ShanHeiSun Uni</string> <string>AR PL ShanHeiSun Uni MBE</string> </test> <test compare="more_eq" name="pixelsize" > <int>17</int> </test> <edit mode="assign" name="antialias" > <bool>true</bool> </edit> <edit mode="assign" name="hinting" > <bool>true</bool> </edit> </match> </fontconfig>
Comment