|
发表于 2006-1-9 20:32:52
|
显示全部楼层
保证你的/etc/fonts/local.conf或者~/.fonts.conf中有下面这段。
其中的字体替换为你任何你想关闭AA的字体。具体上限、下限可以根据自己喜好调整。
[php]
<match target="font" >
<test compare="eq" name="family" qual="any" >
<string>LinuxSong</string>
<string>NSimSun</string>
<string>AR PL ShanHeiSun Uni</string>
<string>AR PL New Sung</string>
</test>
<test compare="more_eq" name="pixelsize" ><double>12</double></test>
<test compare="less_eq" name="pixelsize" ><double>18</double></test>
<edit name="antialias" >
<bool>false</bool>
</edit>
</match>
[/php] |
|