gitextract_jeyfc4m8/ ├── .gitignore ├── COPYING ├── CREDITS ├── Makefile.am ├── README.md ├── RELEASE.md ├── configure.ac ├── debian/ │ ├── README.Debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ └── rules ├── driver/ │ ├── mprops.c │ └── mtrack.c ├── examples/ │ ├── acer-aspire-s3.conf │ ├── asus-zenbook-ux330ua-ah55 │ ├── dell-precision-5520.conf │ ├── dell-xps13-9333.conf │ ├── lenovo-710s.conf │ ├── lenovo-yoga-2-pro.conf │ ├── macbook-pro-retina-2013.conf │ └── macbook.conf ├── include/ │ ├── button.h │ ├── capabilities.h │ ├── common.h │ ├── gestures.h │ ├── hwstate.h │ ├── mconfig.h │ ├── mprops.h │ ├── mtouch.h │ ├── mtstate.h │ └── trig.h ├── required_packages.txt ├── src/ │ ├── capabilities.c │ ├── gestures.c │ ├── hwstate.c │ ├── mconfig.c │ ├── mtouch.c │ ├── mtstate.c │ └── trig.c └── tools/ ├── mtrack-test.c └── reconfigure-xinput.sh