Tag: osx snow leopard

删除节点通知器中的terminal图标

我正在使用https://github.com/mikaelbr/node-notifier包在shell中显示通知。 这是我的代码: var notifier = require('node-notifier'); var path = require('path'); notifier.notify({ title: 'My awesome title', message: 'Hello from node, Mr. User!', icon: path.join(__dirname, 'coulson.jpg'), // absolute path (not balloons) sound: true, // Only Notification Center or Windows Toasters wait: true // wait with callback until user action is taken on notification }, function (err, response) […]