hpbuniat/notifyy

notifyy

Maintainers

Package info

github.com/hpbuniat/notifyy

pkg:composer/hpbuniat/notifyy

Statistics

Installs: 165

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

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

This package is not auto-updated.

Last update: 2026-03-08 09:55:28 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.