Skip to content

Instantly share code, notes, and snippets.

@MarshallOfSound
Created June 7, 2019 21:41
Show Gist options
  • Save MarshallOfSound/193b914cbef773b452d870e285820576 to your computer and use it in GitHub Desktop.
Save MarshallOfSound/193b914cbef773b452d870e285820576 to your computer and use it in GitHub Desktop.
Electron Fiddle Gist
<!-- Empty -->
const {app, Notification} = require('electron')
function onReady () {
const n = new Notification({
title: 'Fake Notification',
body: 'This is a very fake message',
closeButtonText: 'Close',
hasReply: true
})
n.show()
}
app.on('ready', onReady)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment