如何更改无法从“字体”设置中选择的字体大小

如何更改无法从“字体”设置中选择的字体大小

我为我的 Ubuntu 10.04 安装了 Macbuntu。主题很漂亮,很酷。

我想将字体大小改大一点。我打开“外观”偏好设置,发现 Macbuntu 将系统字体改为“Lucida Grande”。

替代文本

但是我在字体列表中找不到“Lucida Grande”,所以我无法将字体大小从 9 更改为 12。

替代文本

有人能提示我如何更改“Lucida Grande”的字体大小吗?

答案1

这看起来像是一个错误,您可能应该提交一个错误报告。

但要回答您的问题,您可以以图形方式执行此操作(使用gconf-editor),但字体设置分布在 gconf 数据库中,因此最快的方法是使用命令行实用程序gconftool来更改这些设置:

应用字体:

gconftool --set /desktop/gnome/interface/font_name --type=string "Lucida Grande 12"

文档字体:

gconftool --set /desktop/gnome/interface/document_font_name --type=string "Lucida Grande 12"

桌面字体:

gconftool --set /apps/nautilus/preferences/desktop_font --type=string "Lucida Grande 12"

窗口标题字体:

gconftool --set /apps/metacity/general/titlebar_font --type=string "Lucida Grande 12"

固定宽度字体:

gconftool --set /desktop/gnome/interface/monospace_font_name --type=string "Lucida Console 12"

答案2

只需将 MacBuntu 包附带的字体复制到位于主目录中的 .fonts/ 目录。

相关内容