Created
December 3, 2014 20:30
-
-
Save yumitsu/92c383ec03c65d0759e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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