• Home
Name Date Size #Lines LOC

..--

READMED03-May-2024842 2218

__init__.pyD03-May-20240 10

click_events.templateD03-May-202410.8 KiB303302

input_playback.pyD03-May-202421.9 KiB530397

keyboard.propD03-May-2024701 2524

keyboard.pyD03-May-20241.7 KiB5134

keyboard_alt+shift+iD03-May-2024624 1918

keyboard_b+a+d+enterD03-May-2024832 2524

keyboard_ctrl+alt+f1D03-May-2024623 1818

keyboard_ctrl+alt+f2D03-May-2024623 1818

keyboard_ctrl+alt+zD03-May-2024591 1817

keyboard_ctrl+f5D03-May-2024416 1312

keyboard_ctrl+shift+f3D03-May-2024624 1918

keyboard_ctrl+shift+qD03-May-2024900 2827

keyboard_ctrl+tD03-May-2024416 1312

keyboard_ctrl+wD03-May-2024415 1212

keyboard_enterD03-May-2024132 54

keyboard_escapeD03-May-2024132 54

keyboard_f1D03-May-2024207 66

keyboard_f10D03-May-2024207 66

keyboard_f2D03-May-2024207 66

keyboard_f3D03-May-2024207 66

keyboard_f4D03-May-2024200 76

keyboard_f6D03-May-2024208 76

keyboard_f7D03-May-2024208 76

keyboard_f8D03-May-2024207 66

keyboard_f9D03-May-2024207 66

keyboard_search+LD03-May-2024416 1312

keyboard_search+downD03-May-2024746 2322

keyboard_search+f2D03-May-2024502 1615

keyboard_search+leftD03-May-2024548 1716

keyboard_search+rightD03-May-2024548 1716

keyboard_search+upD03-May-2024680 2120

keyboard_tabD03-May-2024208 76

mouse.propD03-May-2024698 2524

mouse_center_cursor_gestureD03-May-202441.5 KiB1,2641,263

stylus.prop.templateD03-May-2024816 3029

stylus.pyD03-May-20244.1 KiB10680

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