自定义 libindicator 图标不显示

自定义 libindicator 图标不显示

我想更改我自己的小提醒程序的状态图标。目前我正在使用GTK.状态图标但我想用应用指标

因此我创建了一个自己的图标并将其移动到:

/usr/share/icons/ubuntu-mono-dark/status/22

它被命名为 indicator-notify.svg

这是图标的代码。

ind = appindicator.Indicator ("notify",
                          "indicator-notify",
                          appindicator.CATEGORY_APPLICATION_STATUS)
ind.set_status (appindicator.STATUS_ACTIVE)

此图标是不是显示。尽管此文件夹中的所有其他图标均已显示。

我错过了什么? 是否可能需要在 GTK 中“注册”图标?

答案1

尝试运行命令:

sudo gtk-update-icon-cache /usr/share/icons/ubuntu-mono-dark/

这将更新 ubuntu-mono-dark 主题的图标缓存,这应该可以解决您的问题。

相关内容