|
发表于 2008-10-7 10:05:23
|
显示全部楼层
Post by pingz;1891205
希望楼主能继续,我最想知道是的:这次 Fedora 10 中的 KDE 是否好用。9 中的 KDE 还是不太好。
还可以,目前rawhide的版本是4.1.2,需要最新的:
imsettings-0.104.1-3.fc10
imsettings-libs-0.104.1-3.fc10
,另外,cjkunitfonts-uming最新版本的包cjkunifonts-uming-0.2.20080216.1-5.fc10.noarch其中的脚本似乎有错,在/etc/fonts/conf.d里的symbol link需要手动修改一下。
另外,似乎KDE4/Qt4严格按照fontconfig的配置(还是fedora这些人没有专门配置过?),建议按照默认的/etc/fonts/conf.d/50-user.conf的配置,写个用户自己的font config:
- <fontconfig>
- <match target="font" >
- <edit mode="assign" name="rgba" >
- <const>none</const>
- </edit>
- </match>
- <match target="font" >
- <edit mode="assign" name="hinting" >
- <bool>true</bool>
- </edit>
- </match>
- <match target="font" >
- <edit mode="assign" name="hintstyle" >
- <const>hintfull</const>
- </edit>
- </match>
- <match target="font" >
- <edit mode="assign" name="antialias" >
- <bool>true</bool>
- </edit>
- </match>
- <match target="font" >
- <test name="family">
- <string>AR PL UMing CN</string>
- <string>AR PL UMing HK</string>
- <string>AR PL UMing TW</string>
- <string>AR PL UMing TW MBE</string>
- </test>
- <test compare="more_eq" name="size" qual="any" >
- <double>8</double>
- </test>
- <test compare="less_eq" name="size" qual="any" >
- <double>12</double>
- </test>
- <edit mode="assign" name="antialias" >
- <bool>false</bool>
- </edit>
- </match>
- <match target="font" >
- <test name="family">
- <string>AR PL UMing CN</string>
- <string>AR PL UMing HK</string>
- <string>AR PL UMing TW</string>
- <string>AR PL UMing TW MBE</string>
- </test>
- <test compare="more_eq" name="pixelsize" qual="any" >
- <double>11</double>
- </test>
- <test compare="less_eq" name="pixelsize" qual="any" >
- <double>17</double>
- </test>
- <edit mode="assign" name="antialias" >
- <bool>false</bool>
- </edit>
- </match>
- </fontconfig>
复制代码
这个配置会override /etc/fonts/conf.avail/25-ttf-arphic-uming-bitmaps.conf的配置(如果使用的话).
目前的问题就是Qt 4.4.3在EN的LANG配置中,中文的粗体不能正常显示出来。
BTW: konqueror 4 的Tools里怎么没有Archive Web Page? |
|