|
I've copied simsun.ttc and simhei.ttf to /usr/share/fonts/TTF. Because gtk cannot display SimSun as bold, I want to replace it with SimHei when chinese font is displayed as bold. That is my local.conf
[PHP]<match>
<test name="family"><string>SimSun</string></test>
<test name="weight" compare="eq"><const>bold</const></test>
<edit name="family" mode="assign_replace"><string>SimHei</string></edit>
</match>[/PHP]
But it doesn't work as I expect, the chinese font on title of window is still not bold. How can I change it? |
|