summaryrefslogtreecommitdiff
path: root/arm-e4412/xorg.conf.d/input.conf
diff options
context:
space:
mode:
Diffstat (limited to 'arm-e4412/xorg.conf.d/input.conf')
-rwxr-xr-xarm-e4412/xorg.conf.d/input.conf34
1 files changed, 34 insertions, 0 deletions
diff --git a/arm-e4412/xorg.conf.d/input.conf b/arm-e4412/xorg.conf.d/input.conf
new file mode 100755
index 0000000..6e9171a
--- /dev/null
+++ b/arm-e4412/xorg.conf.d/input.conf
@@ -0,0 +1,34 @@
+Section "ServerFlags"
+ Option "AllowEmptyInput" "true"
+ Option "AutoAddDevices" "true"
+ Option "AutoEnableDevices" "true"
+EndSection
+
+Section "InputClass"
+ Identifier "evdev touchscreen catchall"
+ MatchIsTouchScreen "on"
+ MatchDevicePath "/dev/input/event*"
+ Driver "evdevmultitouch"
+ Option "MultiTouch" "3"
+EndSection
+
+Section "InputClass"
+ Identifier "evdev pointer catchall"
+ MatchIsPointer "on"
+ MatchDevicePath "/dev/input/event*"
+ Driver "evdev"
+EndSection
+
+Section "InputClass"
+ Identifier "evdev keyboard catchall"
+ MatchIsKeyboard "on"
+ MatchDevicePath "/dev/input/event*"
+ Driver "evdev"
+EndSection
+
+Section "InputDevice"
+ Identifier "Gesture"
+ Driver "gesture"
+ Option "Device" "/dev/null"
+ Option "Activate" "1"
+EndSection