$ notify -t “Hello” -m “My Message” -s –open http://github.com $ notify -t “Agent Coulson” –icon https://raw.githubusercontent.com/mikaelbr/node-notifier/master/example/coulson.jpg $ notify -m “My Message” -s Glass $ echo “My Message” | notify -t “Hello” Installation per NPM/Yarn: yarn global add node-notifier-cli TIP: As with many packages you can also run it using the aforementioned npx: npx -p […]
Tag Archives: notifications
Trigger macOS notifications from the CLI with
Silence (embarrassing) notifications with Muzzle
Muzzle looks like a handy app: Automatically turn on Do Not Disturb when screensharing starts. It works with everything. I especially dig the example notifications included on their website … I could watch this all day 😂 Muzzle – silence embarrassing notifications →
Web Notifications Generator
Handy tool by Peter Beverloo to generating Web Notifications. Web Notifications Generator →Using the Notifications API (MDN) →
Pusher — HTML5 WebSocket Powered Realtime Messaging Service
Pusher is a hosted API for quickly, easily and securely adding scalable realtime functionality to web and mobile apps It’s as easy as subscribing to a channel: var channel = pusher.subscribe(‘my-channel’); channel.bind(‘my-event’, function(data) { alert(‘Received my-event with message: ‘ + data.message); }); and pushing messages to it: pusher.trigger(‘my-channel’, ‘my-event’, { "message": "hello world" } ); […]
Web Notifications
Good writeup on Web Notifications by David Storey →