mirror of
https://github.com/moparisthebest/uinput-mapper
synced 2024-11-13 12:15:05 -05:00
16 lines
430 B
Plaintext
16 lines
430 B
Plaintext
Generate:
|
|
- input.h constants ; macros:
|
|
- EV_*
|
|
- KEY_*
|
|
- BTN_*
|
|
- REL_*
|
|
- ABS_*
|
|
|
|
gcc -E -dM /usr/include/linux/input.h | egrep ' (KEY|BTN|EV|REL|ABS|SYN)_[A-Za-z0-9_]+' | ( echo "#include <linux/input.h>" ; echo "input_constants_dict = {" ; sed -r 's/[^ ]+ +([^ ]+).*/"\1" : \1,/' ; echo "}" ) | gcc -E -o /dev/stdout - | grep 'input_constants_dict = {' -A 100000 > gen.py
|
|
|
|
|
|
Lambas for EVIO*
|
|
|
|
|
|
- uinput
|