Requires xrdb
to be installed on the system as this library directly calls
xrdb
and parses it.
It is very simple to query the xrdb
of the system.
```rust
use pino_xrdb::Xrdb;
fn main() {
let mut xrdb = Xrdb::new();
xrdb.read().unwrap();
if let Some(value) = xrdb.query("dwm", "color1") {
println!("dwm.color1 has value {}", value);
} else {
println!("dwm.color1 not found");
}
} ```