跳至主要内容

博文

目前显示的是标签为“Emerald”的博文

Living in Hardy Heron (4)

美丽苍穹 神说:诸水之间要有空气,将水分为上下。 神造了苍穹,把苍穹之下的水和苍穹以上的水分开了。 神称苍穹为天。 有晚上,有早晨,这是第二日。 刚安装好的Ubuntu的界面是以橘黄色作为基调的,8.04里的默认壁纸是一只抽象的鹭(对,就是代码名字Hardy Heron里说的爱吃青蛙的Heron,一开始我还以为是鹤,不过Crane一般都是白色的……)默认的简体中文字体是文泉驿。老实说,整体看来界面还是有不小的改进空间的。不过不要紧,已经有很多老鸟为我们指明了方向——使用更为漂亮的商业字体(当然少不了从盖茨大叔留下的那家大公司里面“搬”出来的),还有更绚的3D引擎来美化工作空间。毕竟如果要以Ubuntu作为日常使用的操作系统的话,将整个UI做个养眼的美容还是很有必要的。 字体方面,可以下载微软雅黑和苹果的LiHeiPro字体文件。二者都是TTF字体,使用方法如下: # Goto the system folder where the fonts are stored cd /usr/share/fonts # Make dirs for the new fonts cd ./truetypes sudo mkdir ttf-msyh/ ttf-liheipro/ # Copy the fonts into the new folder and make sure they have proper permissions cd ttf-msyh/ sudo cp ~/downloads/msyh*.ttf . sudo chown root:root *.ttf sudo chmod 644 *.ttf # And generate the scales and dirs configuration sudo mkfontscale sudo mkfontdir # Finally, after both fonts are done, we fresh the system cache of fonts # the command fc-cache is called, with options to force refresh, and # write verbose output to console. sudo fc-cache -fv 安装完字体文件之后,具体...