x11-rs icon indicating copy to clipboard operation
x11-rs copied to clipboard

Rust bindings for X11 libraries

Results 31 x11-rs issues
Sort by recently updated
recently updated
newest added

`src/xinput2.rs` doesn't have the translation for the XIMaskLen macro. ```c #define XIMaskLen(event) (((event) >> 3) + 1) ``` That should be implemented as: ```rust pub fn XIMaskLen(event: i32) -> usize...