pino_xmodmap

Crates.iopino_xmodmap
lib.rspino_xmodmap
version0.2.0
sourcesrc
created_at2022-11-22 00:21:53.824586
updated_at2022-12-30 21:43:20.960212
descriptiona tiny xmodmap parsing library
homepage
repositoryhttps://github.com/MrPicklePinosaur/pino_xutils.git
max_upload_size
id720543
size21,685
Daniel Liu (MrPicklePinosaur)

documentation

README

pino_xmodmap

tiny xmodmap parsing library

crates.io docs.rs MIT/Apache 2.0

Requires xmodmap to be installed on the system as this library directly calls it and parses the output. Using this library is very simple:

use pino_xmodmap::{KeyTable, Modifier, KeySym};

fn main() {
    let xmodmap = KeyTable::new().unwrap();
    let a_key = xmodmap.get_key(KeySym::KEY_a).unwrap();
}
Commit count: 10

cargo fmt