Skip to content

Instantly share code, notes, and snippets.

@nicokoelewijn
Last active January 24, 2018 08:48
Show Gist options
  • Select an option

  • Save nicokoelewijn/47f8c3141605d2cc9618789bea4a59a9 to your computer and use it in GitHub Desktop.

Select an option

Save nicokoelewijn/47f8c3141605d2cc9618789bea4a59a9 to your computer and use it in GitHub Desktop.
// Component triggers the OSX notification pop-up
//
// Usage:
// const notify = require('./notify');
// notify('hello');
const osascript = require('node-osascript');
module.exports = (msg) => {
osascript.execute('display notification "'+ msg +'"');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment