This is a small Rust Crate for AnyBar. (WIP)
quit
(even though it's experimental)```rust use anybar::*;
// create a new AnyBar instance connected to the default port let mut bar = Anybar::default();
// set the color bar.set_color(Color::Red); ```
```rust use anybar::*;
// Anybar::new() takes the AnyBar port as parameter let mut custombar = Anybar::new(1708); custombar.set_color(Color::Exclamation); ```
Please check the documentation for more examples and details on certain functions.
This work is licensed under the MIT license. See LICENSE
for more information.