|
在fonts.conf里添加了下面这些配置后,gnome里有了粗体,firefox里还是没有。
xorg里的libxft已经是2.1.7,还需要做什么才能让firefox也实现粗体?
<!--
Synthetic emboldening for fonts that do not have bold face available
-->
<match target="font">
<!-- check to see if the font is just regular -->
<test name="weight" compare="less_eq">
<int>100</int>
</test>
<!-- check to see if the pattern requests bold -->
<test target="pattern" name="weight" compare="more_eq">
<int>180</int>
</test>
<!-- set the embolden flag -->
<edit name="embolden" mode="assign">
<bool>true</bool>
</edit>
</match>
</fontconfig> |
|