mikaelbr / node-notifier

A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback)
MIT License
5.73k stars 322 forks source link

Notifications on windows with duplicated screen #383

Open wirelessmundi opened 2 years ago

wirelessmundi commented 2 years ago

When I have a duplicate screen especially in windows 10, no notification appears

code: const notifier = require('node-notifier'); notifier.notify({ title: 'My notification', message: 'Hello, there!' }, function (error, response) { console.log('notify', error); });

response log: notify timeout

any ideas?

Thanks.