# pino_xmodmap
tiny xmodmap parsing library
[](https://crates.io/crates/pino_xmodmap)
[](https://docs.rs/pino_xmodmap)
[](#)
Requires xmodmap
to be installed on the system as this library directly calls
it and parses the output. Using this library is very simple:
```rust
use pino_xmodmap::{KeyTable, Modifier, KeySym};
fn main() {
let xmodmap = KeyTable::new().unwrap();
let akey = xmodmap.getkey(KeySym::KEY_a).unwrap();
}
```