2 releases
Uses old Rust 2015
0.0.3 | Sep 28, 2016 |
---|---|
0.0.2 | May 14, 2015 |
#30 in #event-system
6KB
156 lines
keystroke-rs
Send a string, character, or keystroke event to the system.
Contributions welcome!
Examples
extern crate keystroke;
// simple
use keystroke::{send_char, send_str};
// medium
use keystroke::{send_key, send_combo, Key, Physical};
// complicated
use keystroke::{press_key, release_key};
fn main() {
// simple
send_str("echo FOO bar\n");
send_char('\n');
// medium
send_combo(&[
Key::Physical(Physical::E), Key::Unicode('c'), Key::Unicode('h'), Key::Unicode('o'),
Key::Physical(Physical::Return)]);
send_key(Key::Physical(Physical::Return));
// complicated
use Key::{Physical, Unicode};
use Physical::{E, C, H, O, Return, Shift};
press_key(Physical(Shift));
send_combo(&[
Physical(E), Physical(C), Physical(H), Physical(O)]);
release_key(Physical(Shift));
send_key(Physical(Return));
}
TLDR; call keystroke::send_str
with a &str
.
Development
- Only has Windows bindings right now. PR's welcome adding linux and macOS!
lib.rs
:
Send a string, character, or keystroke event to the system.
Dependencies
~56–280KB