diff options
author | Aaditya Dhruv <[email protected]> | 2023-08-27 01:42:25 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-08-27 01:42:25 -0500 |
commit | 4c8ebb3fffcdf10ba00a8beba47967cfc20011f0 (patch) | |
tree | 052afc3265a6b246bce0314f4add1adafd026640 /src/xorg/conf/80-libinput.conf | |
parent | 598dc8dc0b06b13da8c4e2824dcff7d55a26fbf0 (diff) |
moving files around, clearing scripts
Diffstat (limited to 'src/xorg/conf/80-libinput.conf')
-rw-r--r-- | src/xorg/conf/80-libinput.conf | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/xorg/conf/80-libinput.conf b/src/xorg/conf/80-libinput.conf new file mode 100644 index 0000000..12fa57b --- /dev/null +++ b/src/xorg/conf/80-libinput.conf @@ -0,0 +1,53 @@ +# 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*" + Option "NaturalScrolling" "true" + 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 |