Crate for easily creating system bars/panels/docks.
The goal of this crate is to make it as simple as possible to create complex bars/panels/docks for linux without having to worry about anything but rendering.
To get started with the crate, a new bar needs to be created. This is done using the load
method in the Bar
. Once this is acquired the recv
, try_recv
and lock
methods
should be all that is required to receive events and render the bar.
``` use std::io::Cursor;
use bar_config::Bar;
fn main() { let input = Cursor::new(String::from( "\ height: 30\n\ monitors:\n\ - { name: \"DVI-1\" }\n\ left:\n\ - { text: \"Hello, World!\" }\n\ center:\n\ - { name: \"clock\" }\n\ right:\n\ - { text: \"VOLUME\" }", ));
let mut bar = Bar::load(input).unwrap();
print_bar(&bar);
loop {
if let Ok(_) = bar.recv() {
print_bar(&bar);
}
}
}
fn print_bar(bar: &Bar) { let config = bar.lock(); for comp in config .left .iter() .chain(&config.center) .chain(&config.right) { if let Some(text) = comp.text() { print!("{}\t", text); } } println!(""); } ```
This is the grammar for the user configuration. It is designed to map to data formats like YAML or JSON but should also allow an easy representation in Rust.
```bash
Bar # General configuration options !height: u8 ?position: Position ?background: Background !monitors: [Monitor]
# Default fallback values for components
?defaults: ComponentSettings
# Component containers
?left: [Component]
?center: [Component]
?right: [Component]
Component # Name used to identify which component should be loaded ?name: String
# Text which will be displayed inside the component
?text: String
# Options available for every component
?settings: ComponentSettings
# Extra options are passed to the component
?_: T
ComponentSettings ?foreground: (r: u8, g: u8, b: u8, a: u8) ?background: Background ?width: u8 ?padding: u8 ?offsetx: i8 ?offsety: i8 ?fonts: [Font] ?border: Border
Background !Image(path: String) | Color(r: u8, g: u8, b: u8, a: u8)
Font !description: String !size: u8
Monitor !name: String ?fallback_names: [String]
Border !height: u8 !color: (r: u8, g: u8, b: u8, a: u8)
Position !Top | Bottom ```