This object allows sending system notifications. It only works on GNU/Linux.
Constructor function.
var myObject = new Notify();
var myObject = new Notify(parameters);
var myObject = new Notify();
var myObject = new Notify({ title: "Hello", text: "Hello automation world!" });
Shows the notification.
myObject.show();
myObject.show(parameters);
myObject.show();
myObject.show({ title: "Hello", text: "Hello automation world!" });
If you want to update a notification's text re-use a single Notify object and call show to change the text.