TwitterのChromeプラグインの通知がうるさすぎるので、API叩いてMacの通知に流すシェル書けないかな〜のかな〜とかおもって。
osascript
という、Apple Scriptを実行するコマンドが入ってます。
これを使って、アプリ通知を出します。
osascript -e 'display notification "hogehoge" with title "Fuga"'
シェルからも実行できます。
disp.sh
#!/bin/sh
/usr/bin/osascript -e 'display notification "hogehoge" with title "Fuga"'
Apple Scriptおもしろそうやん。
なにか使えそう。