keysim 0.1.0

a crossplatform library to simulate user inputs
Documentation
1
2
3
4
5
6
7
8
9
10
//! This module provides the implementation of `keysim` when using the X11 window manager.

mod simulator;
pub use self::simulator::*;

mod error;
pub use self::error::*;

mod sys;
mod utils;