evdevremapkeys icon indicating copy to clipboard operation
evdevremapkeys copied to clipboard

Daemon to remap events on linux input devices

Results 19 evdevremapkeys issues
Sort by recently updated
recently updated
newest added

Is it possible to remap a key to a mousewheel event? I'm running this config file: ``` devices: - input_name: 'Dell KB216 Wired Keyboard' input_phys: 'usb-0000:00:14.0-4/input0' output_name: remap-kbd remappings: KEY_W:...

Is it possible to remap a command to another commad? For example alt+c sends ctrl+c? I checked this PR, but I don't quite understand how it works. https://github.com/philipl/evdevremapkeys/pull/16 Threre is...

Is it possible to map, e.g. a combination of Ctrl and left arrow keys to the Home key? If yes, how can I specify that in the YAML configuration?

`python evdevremapkeys/evdevremapkeys.py -l` ``` evdevremapkeys/evdevremapkeys.py:44: DeprecationWarning: "@coroutine" decorator is deprecated since Python 3.8, use "async def" instead async def handle_events(input, output, remappings, modifier_groups): evdevremapkeys/evdevremapkeys.py:77: DeprecationWarning: "@coroutine" decorator is deprecated since...

I want specifically to remap the horizontal scroll event to another thing recognizable by games. Currently I'm using evrouter on X11 to remap my mouse but when it works to...

Hello! I'm trying to remap the buttons of a Logitech G27 wheel and now I discovered your program I feel I'm close to it, so thanks! However, I have an...

Originally posted here: https://github.com/philipl/evdevremapkeys/issues/4#issuecomment-639738690   @pronobis @philipl This is very much what I need! So I'd really like to see the changes from @pronobis merged. https://github.com/philipl/evdevremapkeys/issues/4 > I quickly hacked...

Don't have time to make a PR, but to avoid the error from **issue title**, I'd propose adding a ` /etc/udev/rules.d/10-evdevremapkeys.rules` file to examples with the following content: ``` #...

Example scenario: caps+hjkl are mapped as arrow keys. Reproducing the bug: 1. press KEY_CAPSLOCK 2. press KEY_H; this sends "KEY_LEFT down" 3. wait a few seconds for repeat to kick...

This PR adds the "Bounce keys" feature that allows users to ignore rapid, repeated keypresses of the same key. My keyboard chatters and I really need the feature that works...