一、字体
Ubuntu13.04 默认中文字体变成了文泉驿正黑,看起来很别扭,想换成12.10中使用的文泉驿微米黑,只需要将以下内容保存到~/.config/fontconfig/fonts.conf
<fontconfig>
<match target="pattern">
<test name="family" qual="any">
<string>serif</string>
</test>
<edit name="family" binding="strong" mode="prepend">
<string>Ubuntu</string>
<string>WenQuanYi Micro Hei</string>
</edit>
</match>
<match target="pattern">
<test name="family" qual="any">
<string>sans-serif</string>
</test>
<edit name="family" binding="strong" mode="prepend">
<string>Ubuntu</string>
<string>WenQuanYi Micro Hei</string>
</edit>
</match>
<match target="pattern">
<test name="family" qual="any">
<string>monospace</string>
</test>
<edit name="family" binding="strong" mode="prepend">
<string>Ubuntu Mono</string>
<string>WenQuanYi Micro Hei Mono</string>
</edit>
</match>
</fontconfig>
如果想修改默认字体为其他字体,下载gnome-tweak-tool:
$ sudo apt-get install gnome-tweak-tool
安装后,打开gnome-tweak-tool,在字体页可以修改默认字体。
二、主题
到gnome-look.org下载喜欢的主题,放到~/.themes文件夹下,然后用gnome-tweak-tool修改成对应主题即可。
这里推荐一款mac风格主题,这也是gnome-look.org上评价最高的一款主题 —— Gnome-Cupertino
三、图标
推荐两个非常漂亮且广泛使用的图标包:faenza 和 faience
安装方法:
$ sudo add-apt-repository ppa:tiheum/equinox
$ sudo apt-get update
$ sudo apt-get install faenza-icon-theme faience-icon-theme
然后,打开gnome-tweak-tool在主题页选择相应主题即可。
推荐在gnome-tweak-tool里将当前主题和gtk+主题设为Gnome-Cupertino-Unity,图标主题设为Faience-Azur。