mki-rust
mki-rust copied to clipboard
Add keyboard and mouse combo hotkeys simultaneously pressed.Just like this: ```rust mki::register_hotkey(&[Keyboard::LeftAlt, Button::Left], || { println!("Alt+LeftButton Pressed") }); ```
Is it possible to use mki to disable hotkeys like alt + tab system wide? If not, pleas give suggestions for disabling certain hotkeys, by intercepting them and not passing...
I'm trying to mute sound using keyboard using this program: When i click the mute button it works and says Jackpot, but at the start of my program, it clicks...
There seems to be no way to get mouse coordinates
Seems the vk usage is pretty bad, so maybe time to investigate scan codes aproach.