Notification gnome

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 ()

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *