- X11 keyboard capture via XGrabKeyboard (no input group needed) - Direct X11 clipboard for Unicode injection (no xclip/xdotool dependency) - Proper KeyPress/KeyRelease tracking (fix Ctrl+C, Alt+Tab, held keys) - Default input_method=vni, start_enabled=false - AppImage: bundled xclip, proper keyboard+VN SVG icon - Deb: Recommends libxtst6, xclip
13 lines
227 B
Rust
13 lines
227 B
Rust
pub mod inject;
|
|
pub mod monitor;
|
|
pub mod uinput_monitor;
|
|
pub mod wayland_im;
|
|
|
|
#[cfg(feature = "x11")]
|
|
pub mod x11_inject;
|
|
|
|
#[cfg(feature = "x11")]
|
|
pub mod x11_capture;
|
|
|
|
pub use inject::KeyInjector;
|
|
pub use monitor::KeyMonitor;
|