Closed sayanee closed 9 years ago
how to show 2 or more notifications? https://github.com/mikaelbr/node-notifier/issues/55
try with group
option:
var notifier = require('node-notifier');
notifier.notify({
'title': 'My notification',
'message': 'Hello, there!',
'wait': true,
'group': 1
});
notifier.notify({
'title': 'hola!!!',
'message': 'Hello, there!',
'wait': true,
'group': 2
});
idea: