1
0
Fork 0
forked from wry/wry
wry/jay-config/src/status.rs
2022-05-16 18:21:56 +02:00

12 lines
341 B
Rust

//! Knobs for changing the status text.
/// Sets the status text.
///
/// The status text is displayed at the right end of the bar.
///
/// The status text should be specified in [pango][pango] markup language.
///
/// [pango]: https://docs.gtk.org/Pango/pango_markup.html
pub fn set_status(status: &str) {
get!().set_status(status);
}