mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
6 lines
144 B
HTML
6 lines
144 B
HTML
|
|
<script>
|
||
|
|
require('electron').ipcRenderer.on('notification', (ev, { title, body }) => {
|
||
|
|
new Notification(title, { body });
|
||
|
|
});
|
||
|
|
</script>
|