├── .gitignore ├── COPYING ├── Makefile.am ├── README ├── autogen.sh ├── conf ├── 11-x11-synaptics.fdi ├── 70-synaptics.conf └── Makefile.am ├── configure.ac ├── docs ├── README.alps ├── tapndrag.dia └── trouble-shooting.txt ├── include ├── Makefile.am └── synaptics-properties.h ├── man ├── Makefile.am ├── synaptics.man ├── synclient.man └── syndaemon.man ├── src ├── Makefile.am ├── alpscomm.c ├── eventcomm.c ├── eventcomm.h ├── properties.c ├── ps2comm.c ├── ps2comm.h ├── psmcomm.c ├── synaptics.c ├── synapticsstr.h ├── synproto.c └── synproto.h ├── tools ├── .gitignore ├── Makefile.am ├── synclient.c └── syndaemon.c └── xorg-synaptics.pc.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/autogen.sh -------------------------------------------------------------------------------- /conf/11-x11-synaptics.fdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/conf/11-x11-synaptics.fdi -------------------------------------------------------------------------------- /conf/70-synaptics.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/conf/70-synaptics.conf -------------------------------------------------------------------------------- /conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/conf/Makefile.am -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/README.alps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/docs/README.alps -------------------------------------------------------------------------------- /docs/tapndrag.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/docs/tapndrag.dia -------------------------------------------------------------------------------- /docs/trouble-shooting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/docs/trouble-shooting.txt -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/synaptics-properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/include/synaptics-properties.h -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/synaptics.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/man/synaptics.man -------------------------------------------------------------------------------- /man/synclient.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/man/synclient.man -------------------------------------------------------------------------------- /man/syndaemon.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/man/syndaemon.man -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/alpscomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/alpscomm.c -------------------------------------------------------------------------------- /src/eventcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/eventcomm.c -------------------------------------------------------------------------------- /src/eventcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/eventcomm.h -------------------------------------------------------------------------------- /src/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/properties.c -------------------------------------------------------------------------------- /src/ps2comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/ps2comm.c -------------------------------------------------------------------------------- /src/ps2comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/ps2comm.h -------------------------------------------------------------------------------- /src/psmcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/psmcomm.c -------------------------------------------------------------------------------- /src/synaptics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/synaptics.c -------------------------------------------------------------------------------- /src/synapticsstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/synapticsstr.h -------------------------------------------------------------------------------- /src/synproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/synproto.c -------------------------------------------------------------------------------- /src/synproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/src/synproto.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/synclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/tools/synclient.c -------------------------------------------------------------------------------- /tools/syndaemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/tools/syndaemon.c -------------------------------------------------------------------------------- /xorg-synaptics.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quadpixels/three-finger-dragging/HEAD/xorg-synaptics.pc.in --------------------------------------------------------------------------------