1.0.2 • Published 12 months ago

baboop v1.0.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 months ago

Baboop

display notification on macOS desktop

Install

npm install --save baboop

Usage: CLI

Will display a macOS notification with the name ls -alh once the ls command finished running:

npx baboop ls -alh

Usage: API

import { runCommandAndNotify } from 'baboop'

async function init() {
  const commandToRun = 'ls -alh';
  const result = await runCommandAndNotify(commandToRun)
}

init();
// will display a macOS notification with the name `ls -alh`
// once the `ls` command finished running

Contributing

Please consult CONTRIBUTING for guidelines on contributing to this project.

Author

baboop © Liran Tal, Released under the Apache-2.0 License.