|
|
发表于 2006-11-11 19:52:15
|
显示全部楼层
Post by djcat
这个怎么解决呢!我也头大啊,英文字休之间间距太大,字体有点不清楚
你是说全局的字体?
把这个存为/etc/fonts/local.conf,可以消除小字体的模糊
- <match target="font">
- <test name="pixelsize" compare="less_eq">
- <double>24</double>
- </test>
- <edit name="autohint">
- <bool>false</bool>
- </edit>
- <edit name="antialias">
- <bool>false</bool>
- </edit>
- </match>
复制代码
还有/etc/gtk-2.0/gtkrc:
- style "user-font"
- {
- font_name="Tahoma,SimSun 11"
- }
- widget_class "*" style "user-font"
复制代码
可以根据实际情况做些修改
我的机器上locale设为zh_CN.gbk,然后所有东西都很好看 |
|