We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i wrote an awfully simple node script for controlling the icon...
#!/usr/bin/env node var dgram = require('dgram'), anybarSocket = dgram.createSocket('udp4'), message = new Buffer(process.argv[2]); anybarSocket.send( message, 0, message.length, process.argv[3] || 1738, 'localhost', function() { process.exit(); } );
if you chmod +x scriptname then you can ./scriptname question or ./scriptname question 1234.
chmod +x scriptname
./scriptname question
./scriptname question 1234
i'm not sure if this is useful for anyone, but i got a little tired of doing echo -n "color" | nc blah blah...
echo -n "color" | nc blah blah
The text was updated successfully, but these errors were encountered:
I also created a small client in go ( #12 ), which might be helpful for those people that don't have Node installed.
Sorry, something went wrong.
Ditto! https://github.com/justincampbell/anybar
Added list of alternative clients to README.md
No branches or pull requests
i wrote an awfully simple node script for controlling the icon...
if you
chmod +x scriptname
then you can./scriptname question
or./scriptname question 1234
.i'm not sure if this is useful for anyone, but i got a little tired of doing
echo -n "color" | nc blah blah
...The text was updated successfully, but these errors were encountered: