Last active
June 12, 2016 04:28
-
-
Save dcposch/e9f1479317abc2024c44270fe85f3f4b 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
// 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