baboop
v1.0.2
Published
display notification on macOS desktop
Downloads
30
Maintainers
Readme
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.