Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README | D | 03-May-2024 | 842 | 22 | 18 | |
__init__.py | D | 03-May-2024 | 0 | 1 | 0 | |
click_events.template | D | 03-May-2024 | 10.8 KiB | 303 | 302 | |
input_playback.py | D | 03-May-2024 | 21.9 KiB | 530 | 397 | |
keyboard.prop | D | 03-May-2024 | 701 | 25 | 24 | |
keyboard.py | D | 03-May-2024 | 1.7 KiB | 51 | 34 | |
keyboard_alt+shift+i | D | 03-May-2024 | 624 | 19 | 18 | |
keyboard_b+a+d+enter | D | 03-May-2024 | 832 | 25 | 24 | |
keyboard_ctrl+alt+f1 | D | 03-May-2024 | 623 | 18 | 18 | |
keyboard_ctrl+alt+f2 | D | 03-May-2024 | 623 | 18 | 18 | |
keyboard_ctrl+alt+z | D | 03-May-2024 | 591 | 18 | 17 | |
keyboard_ctrl+f5 | D | 03-May-2024 | 416 | 13 | 12 | |
keyboard_ctrl+shift+f3 | D | 03-May-2024 | 624 | 19 | 18 | |
keyboard_ctrl+shift+q | D | 03-May-2024 | 900 | 28 | 27 | |
keyboard_ctrl+t | D | 03-May-2024 | 416 | 13 | 12 | |
keyboard_ctrl+w | D | 03-May-2024 | 415 | 12 | 12 | |
keyboard_enter | D | 03-May-2024 | 132 | 5 | 4 | |
keyboard_escape | D | 03-May-2024 | 132 | 5 | 4 | |
keyboard_f1 | D | 03-May-2024 | 207 | 6 | 6 | |
keyboard_f10 | D | 03-May-2024 | 207 | 6 | 6 | |
keyboard_f2 | D | 03-May-2024 | 207 | 6 | 6 | |
keyboard_f3 | D | 03-May-2024 | 207 | 6 | 6 | |
keyboard_f4 | D | 03-May-2024 | 200 | 7 | 6 | |
keyboard_f6 | D | 03-May-2024 | 208 | 7 | 6 | |
keyboard_f7 | D | 03-May-2024 | 208 | 7 | 6 | |
keyboard_f8 | D | 03-May-2024 | 207 | 6 | 6 | |
keyboard_f9 | D | 03-May-2024 | 207 | 6 | 6 | |
keyboard_search+L | D | 03-May-2024 | 416 | 13 | 12 | |
keyboard_search+down | D | 03-May-2024 | 746 | 23 | 22 | |
keyboard_search+f2 | D | 03-May-2024 | 502 | 16 | 15 | |
keyboard_search+left | D | 03-May-2024 | 548 | 17 | 16 | |
keyboard_search+right | D | 03-May-2024 | 548 | 17 | 16 | |
keyboard_search+up | D | 03-May-2024 | 680 | 21 | 20 | |
keyboard_tab | D | 03-May-2024 | 208 | 7 | 6 | |
mouse.prop | D | 03-May-2024 | 698 | 25 | 24 | |
mouse_center_cursor_gesture | D | 03-May-2024 | 41.5 KiB | 1,264 | 1,263 | |
stylus.prop.template | D | 03-May-2024 | 816 | 30 | 29 | |
stylus.py | D | 03-May-2024 | 4.1 KiB | 106 | 80 |
README
1How to add new gesture files: 21. Obtain a chromebook with a test image and the input source in question 3 (either onboard or plugged in). 42. Determine the input node of the input, e.g. /dev/input/event4. Either: 5 a. run evtest command on the device. The output should be names and nodes 6 of all detected input sources. 7 b. run touch_UpdateErrors test on the device and read the logs. All input 8 devices should be listed in .INFO along with their nodes. 93. RECORD (from the device): 10 evemu-record $node -1 > $filename 114. PLAY BACK (for verification, from the device): 12 evemu-play --insert-slot0 $node < $filename 13 14Other potentially useful commands: 15- Record device properties for emulation: 16 evemu-describe $node 17- Emulate device: 18 evemu-device < $filename 19 20 21See also https://www.freedesktop.org/wiki/Evemu/ 22