Notification
#!/usr/bin/python import sys import pynotify titre="Salut Pascal" message="Petite notification\npour te dire que tout est ok\nBye" if not pynotify.init ("icon-summary-body"): sys.exit (1) n = pynotify.Notification (titre, message) n.show ()