barreyo / rust-sysbar

Rust library for interacting with the system's taskbar / tray / statusbar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rust-sysbar

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.

Example

let mut bar = sysbar::Sysbar::new("Foo");

bar.add_item(
    "Say 'bar'",
    Box::new(move || {
        println!("bar");
    }),
);

bar.add_quit_item("Quit");

bar.display();

Resulting screenshot of code above

See also

License

Licensed under either of

at your option.

About

Rust library for interacting with the system's taskbar / tray / statusbar

License:Apache License 2.0


Languages

Language:Rust 100.0%