├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── README.md ├── aclocal.m4 ├── apply_patches.sh ├── autogen.sh ├── compile ├── conf └── 60-cmt.conf ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── debian ├── README.debian ├── README.source ├── changelog ├── compat ├── control ├── copyright ├── docs ├── rules ├── source │ └── format ├── xserver-xorg-input-cmt.dirs ├── xserver-xorg-input-cmt.install ├── xserver-xorg-input-cmt.postinst └── xserver-xorg-input-cmt.postrm ├── depcomp ├── include ├── Makefile.am ├── Makefile.in └── cmt-properties.h ├── install-sh ├── ltmain.sh ├── man ├── Makefile ├── Makefile.am ├── Makefile.in └── cmt.man ├── missing ├── patches ├── evdev.patch ├── linux_scroll.patch └── log.patch ├── src ├── Makefile.am ├── Makefile.in ├── Makefile.test ├── cmt.c ├── cmt.h ├── event_test.cc ├── gesture.c ├── gesture.h ├── properties.c ├── properties.h ├── test_main.cc └── test_stubs.c ├── xorg-cmt.pc.in └── xorg-conf ├── 20-mouse.conf ├── 20-touchscreen.conf ├── 40-touchpad-cmt.conf ├── 50-touchpad-cmt-aebl.conf ├── 50-touchpad-cmt-alex.conf ├── 50-touchpad-cmt-banjo.conf ├── 50-touchpad-cmt-butterfly.conf ├── 50-touchpad-cmt-candy.conf ├── 50-touchpad-cmt-celes.conf ├── 50-touchpad-cmt-clapper.conf ├── 50-touchpad-cmt-cyan.conf ├── 50-touchpad-cmt-daisy.conf ├── 50-touchpad-cmt-elan.conf ├── 50-touchpad-cmt-enguarde.conf ├── 50-touchpad-cmt-expresso.conf ├── 50-touchpad-cmt-falco.conf ├── 50-touchpad-cmt-gandof.conf ├── 50-touchpad-cmt-glimmer.conf ├── 50-touchpad-cmt-gnawty.conf ├── 50-touchpad-cmt-heli.conf ├── 50-touchpad-cmt-kaen.conf ├── 50-touchpad-cmt-kip.conf ├── 50-touchpad-cmt-leon.conf ├── 50-touchpad-cmt-link.conf ├── 50-touchpad-cmt-lulu.conf ├── 50-touchpad-cmt-lumpy.conf ├── 50-touchpad-cmt-mario.conf ├── 50-touchpad-cmt-orco.conf ├── 50-touchpad-cmt-parrot.conf ├── 50-touchpad-cmt-peppy.conf ├── 50-touchpad-cmt-pi.conf ├── 50-touchpad-cmt-pit.conf ├── 50-touchpad-cmt-puppy.conf ├── 50-touchpad-cmt-quawks.conf ├── 50-touchpad-cmt-rambi.conf ├── 50-touchpad-cmt-samus.conf ├── 50-touchpad-cmt-spring.conf ├── 50-touchpad-cmt-squawks.conf ├── 50-touchpad-cmt-stout.conf ├── 50-touchpad-cmt-swanky.conf ├── 50-touchpad-cmt-veyron_speedy.conf ├── 50-touchpad-cmt-winky.conf ├── 50-touchpad-cmt-wolf.conf ├── 50-touchpad-cmt-zgb.conf ├── 60-touchpad-cmt-auron_paine.conf ├── 60-touchpad-cmt-auron_yuna.conf ├── 60-touchpad-cmt-daisy_skate.conf ├── 60-touchpad-cmt-nyan_big.conf ├── 60-touchpad-cmt-nyan_blaze.conf ├── 60-touchpad-cmt-veyron_jaq.conf ├── 60-touchpad-cmt-veyron_jerry.conf ├── 60-touchpad-cmt-veyron_mighty.conf ├── 60-touchpad-cmt-veyron_minnie.conf ├── 60-touchpad-cmt-veyron_speedy.conf ├── exynos.conf ├── files ├── daisy_linearity.dat └── lumpy_linearity.dat ├── rk32.conf └── tegra.conf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /apply_patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/apply_patches.sh -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/compile -------------------------------------------------------------------------------- /conf/60-cmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/conf/60-cmt.conf -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/README.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/README.debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/docs -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/xserver-xorg-input-cmt.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/xserver-xorg-input-cmt.dirs -------------------------------------------------------------------------------- /debian/xserver-xorg-input-cmt.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/xserver-xorg-input-cmt.install -------------------------------------------------------------------------------- /debian/xserver-xorg-input-cmt.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/xserver-xorg-input-cmt.postinst -------------------------------------------------------------------------------- /debian/xserver-xorg-input-cmt.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/debian/xserver-xorg-input-cmt.postrm -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/depcomp -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/include/Makefile.in -------------------------------------------------------------------------------- /include/cmt-properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/include/cmt-properties.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/ltmain.sh -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /man/cmt.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/man/cmt.man -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/missing -------------------------------------------------------------------------------- /patches/evdev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/patches/evdev.patch -------------------------------------------------------------------------------- /patches/linux_scroll.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/patches/linux_scroll.patch -------------------------------------------------------------------------------- /patches/log.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/patches/log.patch -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/Makefile.test -------------------------------------------------------------------------------- /src/cmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/cmt.c -------------------------------------------------------------------------------- /src/cmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/cmt.h -------------------------------------------------------------------------------- /src/event_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/event_test.cc -------------------------------------------------------------------------------- /src/gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/gesture.c -------------------------------------------------------------------------------- /src/gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/gesture.h -------------------------------------------------------------------------------- /src/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/properties.c -------------------------------------------------------------------------------- /src/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/properties.h -------------------------------------------------------------------------------- /src/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/test_main.cc -------------------------------------------------------------------------------- /src/test_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/src/test_stubs.c -------------------------------------------------------------------------------- /xorg-cmt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-cmt.pc.in -------------------------------------------------------------------------------- /xorg-conf/20-mouse.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/20-mouse.conf -------------------------------------------------------------------------------- /xorg-conf/20-touchscreen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/20-touchscreen.conf -------------------------------------------------------------------------------- /xorg-conf/40-touchpad-cmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/40-touchpad-cmt.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-aebl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-aebl.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-alex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-alex.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-banjo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-banjo.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-butterfly.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-butterfly.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-candy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-candy.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-celes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-celes.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-clapper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-clapper.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-cyan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-cyan.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-daisy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-daisy.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-elan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-elan.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-enguarde.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-enguarde.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-expresso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-expresso.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-falco.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-falco.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-gandof.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-gandof.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-glimmer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-glimmer.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-gnawty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-gnawty.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-heli.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-heli.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-kaen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-kaen.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-kip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-kip.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-leon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-leon.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-link.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-link.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-lulu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-lulu.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-lumpy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-lumpy.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-mario.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-mario.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-orco.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-orco.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-parrot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-parrot.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-peppy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-peppy.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-pi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-pi.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-pit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-pit.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-puppy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-puppy.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-quawks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-quawks.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-rambi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-rambi.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-samus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-samus.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-spring.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-spring.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-squawks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-squawks.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-stout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-stout.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-swanky.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-swanky.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-veyron_speedy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-veyron_speedy.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-winky.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-winky.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-wolf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-wolf.conf -------------------------------------------------------------------------------- /xorg-conf/50-touchpad-cmt-zgb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/50-touchpad-cmt-zgb.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-auron_paine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-auron_paine.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-auron_yuna.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-auron_yuna.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-daisy_skate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-daisy_skate.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-nyan_big.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-nyan_big.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-nyan_blaze.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-nyan_blaze.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-veyron_jaq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-veyron_jaq.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-veyron_jerry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-veyron_jerry.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-veyron_mighty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-veyron_mighty.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-veyron_minnie.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-veyron_minnie.conf -------------------------------------------------------------------------------- /xorg-conf/60-touchpad-cmt-veyron_speedy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/60-touchpad-cmt-veyron_speedy.conf -------------------------------------------------------------------------------- /xorg-conf/exynos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/exynos.conf -------------------------------------------------------------------------------- /xorg-conf/files/daisy_linearity.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/files/daisy_linearity.dat -------------------------------------------------------------------------------- /xorg-conf/files/lumpy_linearity.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/files/lumpy_linearity.dat -------------------------------------------------------------------------------- /xorg-conf/rk32.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/rk32.conf -------------------------------------------------------------------------------- /xorg-conf/tegra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/xf86-input-cmt/HEAD/xorg-conf/tegra.conf --------------------------------------------------------------------------------