无法使用 libnotify 获取通知图标
Cannot get a notification icon with libnotify
我将一个 256x256 的图标放入 ~/.local/share/icons/hicolor/scalable/status/foo.png
。然后我尝试了(在Python3)
import notify2
notify2.init("a")
notification = notify2.Notification(
"a"
"b,
"foo")
notification.show()
现在图标没有被拾取。为什么?
我试着把它放进去
~/.local/share/icons/hicolor/scalable/apps/
~/.local/share/icons/hicolor/256x256/status/
~/.local/share/icons/hicolor/256x256/apps/
还是没有成功
我把图标和脚本放在同一个文件夹里,效果很好。
我将一个 256x256 的图标放入 ~/.local/share/icons/hicolor/scalable/status/foo.png
。然后我尝试了(在Python3)
import notify2
notify2.init("a")
notification = notify2.Notification(
"a"
"b,
"foo")
notification.show()
现在图标没有被拾取。为什么?
我试着把它放进去
~/.local/share/icons/hicolor/scalable/apps/
~/.local/share/icons/hicolor/256x256/status/
~/.local/share/icons/hicolor/256x256/apps/
还是没有成功
我把图标和脚本放在同一个文件夹里,效果很好。