No description
Find a file
2021-10-01 07:49:36 +07:00
.github Create FUNDING.yml 2021-10-01 07:49:36 +07:00
.gitignore Initial commit 2015-06-09 01:00:14 +07:00
anybar.nim Just made it compile with Nim 0.14.x 2016-08-30 20:07:04 +02:00
anybar.nimble version bump 2015-06-09 01:27:11 +07:00
LICENSE Initial commit 2015-06-09 01:00:14 +07:00
README.md Update readme 2015-06-09 01:28:46 +07:00

anybar.nim

Nim client for Anybar

Installation

nimble install anybar

Usage

Library

import anybar

newAnybar().change("cyan")

# custom port
newAnybar(port=Port(1739)).change('red')

# custom host
newAnybar(host="10.0.0.1").change('red')

# tell app to quit
newAnybar().quit()

Command line:

anybar red
anybar -p:1739 yellow
anybar -h:10.0.0.1 green
anybar -h:10.0.0.1 -p:1739 blue

anybar quit