diff options
author | Aaditya Dhruv <[email protected]> | 2023-09-09 18:28:57 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-09-09 18:28:57 -0500 |
commit | bd62baf6409f71ba3ceadfb92604b38f260e3374 (patch) | |
tree | 67023d2f649b94d3f16fed1f6eb95632a62a4d1b /src/xorg/80-libinput.conf | |
parent | 209f13573abb0e69738458a5d587a5af07abdbff (diff) |
Removed xorg directory to favor organization in playbooks instead
Instead of splitting data by directories in the repo, playbooks will be
used to handle whether to install for xorg, wayland etc.
Diffstat (limited to 'src/xorg/80-libinput.conf')
-rw-r--r-- | src/xorg/80-libinput.conf | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/src/xorg/80-libinput.conf b/src/xorg/80-libinput.conf deleted file mode 100644 index 12fa57b..0000000 --- a/src/xorg/80-libinput.conf +++ /dev/null @@ -1,53 +0,0 @@ -# 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 |