Kars Mulder

Results 61 comments of Kars Mulder

... after some more thought, I am probably overthinking this. The behaviour of how EV_SYN is currently handled is intended. However, the implications of that behaviour are not. Moreover, the...

This issue should now be fixed on the main branch (commit ce0bc3bd1604660f32a10df73aad37ba24898695). The new policy is to use the old behaviour when mapping single events to single events (so a...

It looks like at least _some_ part of the linux kernel driver for TTYs is doing something special with scancodes ([linux/drivers/tty/vt/keyboard.c](https://github.com/torvalds/linux/blob/master/drivers/tty/vt/keyboard.c)), so it is possible that this is indeed related...

Thank you for your suggestion. This is already a planned feature for a future version of evsieve, where "future" likely means version 1.4 or 1.5, though the clause to get...

> From an end user's standpoint, I'd probably want a notification with a warning message that gives an option to either recreate it or let it be. The latter being...

Maybe something like the following can solve your problem? ``` --input /dev/input/by-id/YOUR_KEYBOARD persist=reopen domain=kb grab \ --input /dev/input/by-id/usb-SteelSeries_SteelSeries_Aerox_3_Wireless-event-mouse persist=reopen domain=ms grab \ --toggle @kb @guest-kb @host-kb @gmac-kb @hmac-kb \ --toggle...

Similar issue: [#7](https://github.com/KarsMulder/evsieve/issues/7) > What are your thoughts on this? I agree evsieve needs a more ergonomic way to do this, but I have still not figured out the best...

Great suggestion! This one is a bit difficult to implement for me because none of the devices I regularly use have a touchpad, and from a cursory look on the...

I added some support for relative value maps to the latest development version. For example: ``` ---map abs:x rel:x:0.1delta \ ---map abs:y rel:y:0.1delta \ ``` will map each EV_ABS, ABS_X...

I have removed `--abs-to-rel`, most of its use is superseded by relative value maps. The remaining functionality it had is technically already implementable with a complex framework of hooks and...