Crates.io | sysbar |
lib.rs | sysbar |
version | 0.3.0 |
source | src |
created_at | 2017-08-07 12:28:21.969335 |
updated_at | 2021-09-23 03:57:53.768632 |
description | Library for interacting with the system's taskbar / tray / statusbar |
homepage | |
repository | https://github.com/rust-sysbar/rust-sysbar |
max_upload_size | |
id | 26767 |
size | 32,530 |
Library for interacting with the system's taskbar / tray / statusbar. It aims to be cross-platform, but currently only supports macOS. If have some extra time and are interested in implementing this for other platforms, contributions would be greatly appreciated! This project is a fork of rs-barfly.
let mut bar = sysbar::Sysbar::new("Foo");
bar.add_item(
"Say 'bar'",
Box::new(move || {
println!("bar");
}),
);
bar.add_quit_item("Quit");
bar.display();
Licensed under either of
at your option.