https://github.com/rumpl/nanybar
Control AnyBar from your node scripts
https://github.com/rumpl/nanybar
Last synced: 12 months ago
JSON representation
Control AnyBar from your node scripts
- Host: GitHub
- URL: https://github.com/rumpl/nanybar
- Owner: rumpl
- Created: 2015-03-05T15:52:49.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-12-27T08:52:39.000Z (about 9 years ago)
- Last Synced: 2025-03-18T09:04:19.373Z (about 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 30
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nanybar
Control [AnyBar](https://github.com/tonsky/AnyBar) from the command line or from your javascript code
## Install
**You must have [AnyBar](https://github.com/tonsky/AnyBar) installed and running**
The usual :
```
npm install nanybar -g
```
## Usage
From the command line :
```
nanybar red
```
Or if [AnyBar](https://github.com/tonsky/AnyBar) is on another port :
```
nanybar yellow 1025
```
Or use it as a library :
```javascript
var nanybar = require('nanybar');
nanybar('red');
nanybar('yellow', 1025);
```
## License
[MIT](http://rumpl.mit-license.org)