Kars Mulder

Results 60 comments of Kars Mulder

I think the reason that your mouse is not getting detected as a joystick is because most joysticks use EV_ABS events, whereas your mouse is emitting EV_REL events. On the...

This is indeed a good idea. I was going to write up some guidelines regarding its implementation, but then came to the conclusion that it would actually take less time...

I ended up implementing a basic shell lexer myself. I've come to the conclusion that allowing wildcards such as `--input /dev/input/event*` in configuration files is a bad idea because that...

Configuration files by themselves are already implemented, but not stabilized yet (i.e. I might change the format of configuration files without warning). You can use them if you compile evsieve...

It is possible to use `d` as the value in an event map. The variable `d` represents the difference between the current value of the event, and the value that...

The reason that `send-key` requires an EV_KEY type event is because send-key sends two events: a key_down and a key_up event. This makes sense when working with EV_KEY-type events because...

As for the first question, I suppose it can work by mapping the key-down and key-repeat events to EV_REL events that move your mouse. Of particular interest here is the...

I might of course have been wrong and devtmpfs might after all not actually be in charge of managing event device nodes, just some other kind of device nodes. Another...

I have created pull request #215 to fix this issue.

Hello! I am here to clean up the mess I created. Pull request #218 should make this package work even on kernels that don't have `UI_GET_SYSNAME` defined.