README
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