hpbuniat/notifyy

dev-master 2013-05-21 17:18 UTC

This package is not auto-updated.

Last update: 2024-04-21 01:33:36 UTC


README

notifyy is a re-usable component to do easy notifying, e.g. for status reports or updates. This is especially useful in cli applications where it's not longer necessary to continuously monitor the jobs output or to tail a log-file.

Builtin Notifiers

  • Stdout (simply prints the output)
  • File
  • Dbus
  • Growl (works well with snarl on windows)
  • Libnotify (uses notify-send)

Configuration

"growl": {
    "host": "127.0.0.1",
    "port": "9887",
    "password": "",
    "enabled": false
},
"file": {
    "enabled": false,
    "path": "/tmp"
},
"stdout": {
    "enabled": true
},
"libnotify": {
    "enabled": true
}

Extending

You may add own adapters by simply implementing the Notifyable-Interface.