Command line Gnome Notification 1

Posted by Kerry Mon, 10 Mar 2008 21:38:00 GMT

From the “it’s almost certainly been done better somewhere else” department, here is my script to fire off a Gnome Notification after a shell command finishes.

a python script:

#!/usr/bin/python
from pynotify import *
import sys

def notify(message=""):
    n = Notification("Command Line Completed", message)
    n.show()

init("cli notify")
if len(sys.argv) > 1:
    notify(sys.argv[1])
else:
    notify()

Then just add it to your path and you can append it onto some command:

echo monkey && mynotify.py "some message"

You then get a notification like so:

image

Trackbacks

Use the following link to trackback from your own site:
http://blogs.divisibleprime.com/ronin/articles/trackback/940

  1. badaruniter 52 post From badaruniter blog
    all about badaruniter and top news
Comments

Leave a response

  1. gollo 1 day later:

    Nice one, have been looking for something simple like this for ages. How about making a sound optionally as well?

Comments