1 unstable release

0.1.0 Nov 19, 2022

#17 in #zero-dependency

Download history 3/week @ 2024-02-14 71/week @ 2024-02-21 12/week @ 2024-02-28

86 downloads per month

MIT/Apache

9KB
83 lines

pino_xrdb

simple zero-dependency rust parser for xrdb

crates.io docs.rs MIT/Apache 2.0

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.

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");
    }
    
}

lib.rs:

Rust wrapper for xrdb. Query the system's xrdb or add new values to it. Can handle wildcards resources.

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");
    }
    
}

No runtime deps