All pastes #1865988 Raw Edit

Anonymous

public php v1 · immutable
#1865988 ·published 2010-04-18 07:20 UTC
rendered paste body
#!/usr/bin/pythonfrom pynotify import *import sysdef notify(desc="",message=""):    n = Notification(desc, message)    n.show()init("cli notify")if len(sys.argv) > 1:    notify(sys.argv[1], sys.argv[2])else:    notify()