It seems that there is currently no documentation for the GObjects module for python, so maybe someone can help me.
I am making an application that will occasionally notify the user that an event has occurred. I found about using from gi.repository import Notify
and related classes from using a short snippet for Skype notifications and C documentation, but it doesn't seem to close when I call Notify.uninit. The program closes, but a small thing in the notification window remains placed and should be closed by right-clicking on it and selecting βDeleteβ. So, I am wondering if there is another way, as if there was something similar to how on Mac OS the application icon shakes / bounces when something happens, or on Windows the application icon glows in a different color?
I like the Gnome 3 notification system with a message stack, etc., but since I canβt make it disappear when my application exits, I donβt want to use it (if someone does not know how to do it right ... maybe I forgot to set a timeout, but it still doesn't make sense why I can't just remove the notification spot).
source share