Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sidorares/node-i3
i3-ipc node.js client
https://github.com/sidorares/node-i3
Last synced: 7 days ago
JSON representation
i3-ipc node.js client
- Host: GitHub
- URL: https://github.com/sidorares/node-i3
- Owner: sidorares
- License: mit
- Created: 2013-10-10T13:16:46.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2021-04-11T12:13:52.000Z (over 3 years ago)
- Last Synced: 2024-09-18T10:44:53.205Z (about 2 months ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 32
- Watchers: 7
- Forks: 12
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-repositories - sidorares/node-i3 - i3-ipc node.js client (JavaScript)
README
# node-i3
[i3-ipc](http://i3wm.org/docs/ipc.html) client for [node.js](http://nodejs.org)
Helps you to automate [i3 window manager](http://i3wm.org/docs/userguide.html)[![NPM](https://nodei.co/npm/i3.png?downloads=true&stars=true)](https://nodei.co/npm/i3/)
## Install
npm install i3
## API
```js
var i3 = require('i3').createClient();
i3.command('focus left');
i3.on('workspace', function(w) {
console.log('workspace event!', w);
})
```## LINKS
- [i3-ipc wire protocol documentation](http://i3wm.org/docs/ipc.html)
- [Another node.js client](https://github.com/badboy/node-i3)
- [Python client](https://github.com/ziberna/i3-py)
- [collection of helper python scripts](https://github.com/yiuin/i3-wm-scripts)[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/sidorares/node-i3/trend.png)](https://bitdeli.com/free "Bitdeli Badge")