diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:45:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:45:25 +0000 |
commit | 6419b48ac77919b8a46352634a63698ec477390e (patch) | |
tree | 9a29a93fad7139bb44de35b4428393663542121f /conf/40-libinput.conf | |
parent | Initial commit. (diff) | |
download | xserver-xorg-input-libinput-6419b48ac77919b8a46352634a63698ec477390e.tar.xz xserver-xorg-input-libinput-6419b48ac77919b8a46352634a63698ec477390e.zip |
Adding upstream version 0.30.0.upstream/0.30.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'conf/40-libinput.conf')
-rw-r--r-- | conf/40-libinput.conf | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/conf/40-libinput.conf b/conf/40-libinput.conf new file mode 100644 index 0000000..eb33ad0 --- /dev/null +++ b/conf/40-libinput.conf @@ -0,0 +1,52 @@ +# Match on all types of devices but joysticks +# +# If you want to configure your devices, do not copy this file. +# Instead, use a config snippet that contains something like this: +# +# Section "InputClass" +# Identifier "something or other" +# MatchDriver "libinput" +# +# MatchIsTouchpad "on" +# ... other Match directives ... +# Option "someoption" "value" +# EndSection +# +# This applies the option any libinput device also matched by the other +# directives. See the xorg.conf(5) man page for more info on +# matching devices. + +Section "InputClass" + Identifier "libinput pointer catchall" + MatchIsPointer "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput keyboard catchall" + MatchIsKeyboard "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput touchpad catchall" + MatchIsTouchpad "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput touchscreen catchall" + MatchIsTouchscreen "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection + +Section "InputClass" + Identifier "libinput tablet catchall" + MatchIsTablet "on" + MatchDevicePath "/dev/input/event*" + Driver "libinput" +EndSection |