Open
Description
Just spotted Electron has the ability to show native desktop notifications: https://www.electronjs.org/docs/tutorial/notifications
I fired up the Electron Chrome debugger and ran this:
const { Notification } = require('electron');
new Notification({ title: "This is a notification", body: "The notification body goes here" }).show()
And this happened (with a little ping noise):
notify.mov
Think about ways this could be useful.