This repo contains a crate for creating BitBar plugins in Rust.
Here is a simple example :
```rust use rustbitbar::{newline, newplugin, newsub_menu};
fn main() { let mut pl = newplugin(); let mut submenu = newsubmenu(); let mut line = newline("first line".tostring());
line.color("red".to_string())
.href("http://google.com".to_string());
sub_menu.line(line);
pl.status_line(String::from("🍺🍺🍺"))
.sub_menu(sub_menu);
pl.render();
} ```
To have more details please check the official documentation.