Skip to content

Instantly share code, notes, and snippets.

@yumitsu
Created December 3, 2014 20:30
Show Gist options
  • Save yumitsu/92c383ec03c65d0759e8 to your computer and use it in GitHub Desktop.
Save yumitsu/92c383ec03c65d0759e8 to your computer and use it in GitHub Desktop.
//growlnotify -n "My App" -m "Hello world"
//osascript -e 'display notification "Lorem ipsum dolor sit amet" with title "Title"'
//os.platform`
var _notify = function(taskName, msg) {
var _child;
if (taskName == void(0) || taskName === null || taskName.length === 0) {
if (this.name != void(0)) {
taskName = this.name;
} else {
taskName = 'grunt';
}
}
if (msg == void(0)) {
msg = 'Task'+' `'+taskName+'`'+' done.';
}
msg = '\n'+msg;
_child = child.execFile('notify-send', ['-t', '1', 'Grunt message', msg], {}, function(e) {
if (e) {
console.log(e);
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment