在GNOME桌面通知中缺少图像/图标

时间:2015-10-15 01:38:02

标签: python gtk pygtk gnome notify

我试图通过Python脚本显示简单的GNOME桌面通知。根据{{​​3}},可以通过简单的文件URI (file://)显示带有通知的图像,但它只是拒绝在我的脚本中显示它:

#!/usr/bin/python
from gi.repository import Notify
icon = "file://~/icon.png"
Notify.init("Hello world")
Hello = Notify.Notification.new("Hello world", "This is an example notification", icon)
Hello.show()

显示图标应显示的空白区域。我也尝试使用 .ico 格式,但无济于事。

我错过了什么吗?

1 个答案:

答案 0 :(得分:2)

使用主目录的全名替换字符串~中的icon。 Notify无法自行扩展该路径,因此请明确删除该问题。