Tagged Questions
The pynotify tag has no wiki summary.
3
votes
3answers
1k views
How to center a GNOME pop-up notification?
To display a GNOME pop-up notification at (200,400) on the screen (using Python):
import pynotify
n = pynotify.Notification("This is my title", "This is my description")
n.set_hint('x', 200)
...
2
votes
1answer
220 views
How to remove an obsolete pynotify notification?
I just started with python and wrote myself a nice, small script that uses
gnome-notifications via pynotify, like this:
import pynotify
pynotify.init("Application")
alert = ...
2
votes
1answer
239 views
PyNotify not working from cron?
I've written a script that uses pynotify to give an alert. it works just fine when I run it (python script.py), but when run from cron with 00 * * * * myname python ~/scripts/script.py, it doesn't ...
2
votes
1answer
512 views
How to customize pynotify?
How to set icon size in the notifications?
How to set how much time the notification have to be shown?
Where is a complete pynotify documentation?
Can the notification be clickable? (example: if I ...
2
votes
2answers
323 views
How to set a local image in pynotify?
If I run the following in python in Ubuntu 10.04:
>>> import pynotify
>>> p = pynotify.Notification ("Notice","","/home/george/Pictures/test.png")
>>> p.show()
true
The ...
2
votes
1answer
544 views
Weird pynotify behaviour in Ubuntu 9.10
I wrote a small app and I am using pynotify to show some messages to the user.
It all works fine here in arch, but when I tested it in Ubuntu, the behaviour was very weird.
Because of the way Ubuntu ...
1
vote
0answers
64 views
Callbacks and gtk main loop
I'm trying to make a simple Unix desktop application which uses the pynotify notification system to show users some alerts and allow them to launch relevant applications from a button on placed on the ...
1
vote
2answers
90 views
pynotify: “closed” signal callback never fired
I'm trying to write a program with pynotify, the Python bindings for libnotify. I want to bring up a critical notification at some point and have it updated every few seconds as information changes, ...
1
vote
1answer
115 views
How can I read the title, text and icon name from a pynotify.Notification?
If I have a pynotify.Notification object like:
n = pynotify.Notification('title', 'content', 'icon')
How can I read the title (to give 'title'), the text body (to give 'content') and the icon (to ...
1
vote
1answer
93 views
Is it possible to change the title of a notification?
Is it possible to change the title of a pynotify.Notification? If so what is the method call to use?
Also, it is possible to merge notifications using set_hint_string('append', ''). Is it possible to ...
1
vote
1answer
138 views
How to merge notifications with a common title in pynotify?
How can I tell a pynotify.Notification object to merge with another that has the same title?
1
vote
1answer
221 views
What does pynotify.init stand for?
I haven't find a documentation about pynotify... so I don't know what pynotify.init() funciont stand for. Help me :)
1
vote
1answer
147 views
How to get pynotify to display line breaks and HTML?
How can I make pynotify display line breaks and HTML in the notifications?
Here is what I got:
>>> import pynotify
>>> n = pynotify.Notification ("This is a test.\n\nAnd this ...
1
vote
1answer
189 views
How can I copy a remote image over HTTP to gtk.gdk.pixbuf by Python?
this is first post here and I am a noob programmer.
This may be a stupid question.
I'd like to create a personal Twitter notifier on GNOE Desktop. And I've decided to use pynotify and Tweepy.
Now I ...
0
votes
1answer
50 views
pynotify in python script go wrong when running with sudo in KDE
I just want to show notification in KDE environment.So i tried
pynotifytest.py
from pynotify import *
init("test")
Notification("test", "test").show()
then i run sudo python pynotifytest.py,the ...
0
votes
1answer
240 views
Pynotify runs fine interactively, but crashes when run programmatically (on Fedora 13)
I am attempting to use pynotify for a small project, but am having a strange problem on my Fedora 13 machine. It appears that when pynotify is run programmatically it crashes when show() is called - ...
0
votes
3answers
369 views
Python: pynotify network problem
I am using pynotify and this is the code I am trying to get to work:
#! /usr/bin/python
try:
import pynotify
if pynotify.init("Telebrama Alert"):
n = ...