Crates.io | pino_xmodmap |
lib.rs | pino_xmodmap |
version | 0.2.0 |
source | src |
created_at | 2022-11-22 00:21:53.824586 |
updated_at | 2022-12-30 21:43:20.960212 |
description | a tiny xmodmap parsing library |
homepage | |
repository | https://github.com/MrPicklePinosaur/pino_xutils.git |
max_upload_size | |
id | 720543 |
size | 21,685 |
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();
}