3 unstable releases

0.2.1 Mar 31, 2020
0.2.0 Mar 20, 2020
0.1.0 Mar 20, 2020

#8 in #xlib

MIT license

9KB
193 lines

keyfn

Bind key events (press/release) to functions in rust using xlib.
Supports same key with different modifier. Functions are executed in new threads.

Usage

Add this to your Cargo.toml

[dependencies]
keyfn = "0.2.1"

Example

extern crate keyfn;

use keyfn::*;

fn main(){
    // create new KeyStorage
    let mut storage = KeyStorage::new();

    // Call crtl-a_pressed when Control + a is pressed
    let ctrl_a = KeyBind::new(
        keysym::XK_a,
        vec![Mod::Control],
        Trigger::Pressed,
        ctrl_a_pressed,
    );
    
    // Add KeyBind to storage
    storage.add(ctrl_a);

    // start storage
    storage.start();
}

fn ctrl_a_pressed(){
    println!("Control + A pressed!");
}

Dependencies

~460KB