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