我使用窗口管理器 Blackbox 运行 Lubuntu 13.10。我在 settings.ini 中将 GTK 主题设置为 Lubuntu-default:
$ cat ~/.config/gtk-3.0/settings.ini
[Settings]
gtk-theme-name = Lubuntu-default
这使得 GTK3 应用程序使用 Box 图标主题;例如,在 GPicView 中,工具栏图标如下所示:
然而,在 Gedit 中,工具栏图标如下所示:
如何让 Gedit 使用 Box 图标主题?
答案1
设置gtk-icon-theme-name
为lubuntu
in ~/.gtkrc-2.0
(对于 GTK 2 应用程序) 和 in ~/.config/gtk-3.0/settings.ini
(对于 GTK 3 应用程序)。以下是我的 GTK 配置文件的内容:
$ cat ~/.gtkrc-2.0
include "/usr/share/themes/Lubuntu-default/gtk-2.0/gtkrc"
gtk-font-name = "DejaVu Sans 10"
gtk-icon-theme-name = "lubuntu"
$ cat ~/.config/gtk-3.0/settings.ini
[Settings]
gtk-theme-name = Lubuntu-default
gtk-icon-theme-name = lubuntu
在/usr/share/themes/Lubuntu-default/gtk-2.0/gtkrc
属性中gtk-icon-theme-name
设置为Lubuntu
(大写),这一定是一个错误,因为我的系统上没有安装这样的图标主题。