Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
__init__.py | 05-Oct-2017 | 0 | |
input_playback.py | 05-Oct-2017 | 20.1K | |
keyboard.prop | 05-Oct-2017 | 701 | |
keyboard_alt+shift+i | 05-Oct-2017 | 624 | |
keyboard_ctrl+alt+f1 | 05-Oct-2017 | 623 | |
keyboard_ctrl+alt+f2 | 05-Oct-2017 | 623 | |
keyboard_ctrl+alt+z | 05-Oct-2017 | 591 | |
keyboard_ctrl+f5 | 05-Oct-2017 | 416 | |
keyboard_ctrl+t | 05-Oct-2017 | 416 | |
keyboard_ctrl+w | 05-Oct-2017 | 415 | |
keyboard_f1 | 05-Oct-2017 | 207 | |
keyboard_f10 | 05-Oct-2017 | 207 | |
keyboard_f2 | 05-Oct-2017 | 207 | |
keyboard_f3 | 05-Oct-2017 | 207 | |
keyboard_f4 | 05-Oct-2017 | 200 | |
keyboard_f6 | 05-Oct-2017 | 208 | |
keyboard_f7 | 05-Oct-2017 | 208 | |
keyboard_f8 | 05-Oct-2017 | 207 | |
keyboard_f9 | 05-Oct-2017 | 207 | |
keyboard_search+L | 05-Oct-2017 | 416 | |
keyboard_search+shift+down | 05-Oct-2017 | 591 | |
keyboard_search+shift+left | 05-Oct-2017 | 591 | |
keyboard_search+shift+right | 05-Oct-2017 | 591 | |
keyboard_search+shift+up | 05-Oct-2017 | 591 | |
keyboard_tab | 05-Oct-2017 | 208 | |
mouse.prop | 05-Oct-2017 | 698 | |
mouse_center_cursor_gesture | 05-Oct-2017 | 41.5K | |
README | 05-Oct-2017 | 842 |
1 How to add new gesture files: 2 1. Obtain a chromebook with a test image and the input source in question 3 (either onboard or plugged in). 4 2. 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. 9 3. RECORD (from the device): 10 evemu-record $node -1 > $filename 11 4. PLAY BACK (for verification, from the device): 12 evemu-play --insert-slot0 $node < $filename 13 14 Other potentially useful commands: 15 - Record device properties for emulation: 16 evemu-describe $node 17 - Emulate device: 18 evemu-device < $filename 19 20 21 See also https://www.freedesktop.org/wiki/Evemu/ 22