Skip to content

Instantly share code, notes, and snippets.

@dcposch
Last active June 12, 2016 04:28
Show Gist options
  • Save dcposch/e9f1479317abc2024c44270fe85f3f4b to your computer and use it in GitHub Desktop.
Save dcposch/e9f1479317abc2024c44270fe85f3f4b to your computer and use it in GitHub Desktop.
// Do this from the renderer process
var notif = new window.Notification('Download Complete', {
body: torrent.name,
silent: true // We'll play our own sound
})
// If the user clicks in the Notifications Center, show the app
notif.onclick = function () {
ipcRenderer.send('focusWindow', 'main')
}
// Play a sound using the standard HTML5 Audio API
sound.play('DONE')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment