1 安装好arch使用了gnome-shell,在安装的过程中也安装了ttf-dejavu和wqy-microhei字体,可是显示的效果总让人很无奈。 2 3 于是使用gnome-tweak-tool改变了字体的设置,使用microhei显示所有字体,可是效果还是有点不那么爽。 4 5 上网挂google搜到这么一篇文章 Archlinux字体美化+配置 6 7 于是按照上面文章所说使用 ubuntu打了补丁的程序替代原有的arch的字体渲染补丁。 8 9 1,安装字体: 10 pacman -S ttf-dejavu 11 yaourt -S wqy-microhei 12 2,安装补丁: 13 yaourt -S cairo-ubuntu libxft-ubuntu freetype2-ubuntu fontconfig-ubuntu 14 3,配置文件:~/.fonts.conf 15 16 <fontconfig> 17 18 <match target="pattern"> 19 <test qual="any" name="family"> 20 <string>serif</string> 21 </test> 22 <edit name="family" mode="prepend" binding="strong"> 23 <string>DejaVu Serif</string> 24 <string>WenQuanYi Micro Hei</string> 25 </edit> 26 </match> 27 28 <match target="pattern"> 29 <test qual="any" name="family"> 30 <string>sans-serif</string> 31 </test> 32 <edit name="family" mode="prepend" binding="strong"> 33 <string>DejaVu Sans</string> 34 <string>WenQuanYi Micro Hei</string> 35 </edit> 36 </match> 37 38 <match target="pattern"> 39 <test qual="any" name="family"> 40 <string>monospace</string> 41 </test> 42 <edit name="family" mode="prepend" binding="strong"> 43 <string>DejaVu Sans Mono</string> 44 <string>WenQuanYi Micro Hei Mono</string> 45 </edit> 46 </match> 47 48 </fontconfig> 49 50 //4,网上流传的通用字体配置文件:http://www.linuxsir.org/bbs/thread339541.html
Wednesday, September 14, 2011
Archlinux 字体美化+配置
Labels:
arch,
fontconfig
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment