summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2023-12-20 15:49:47 +0100
committerSimon Rettberg2023-12-20 15:49:47 +0100
commit414047494e8e8930fecc6847e8d3a9505327652c (patch)
treed2dc77955160d50907bd4d71a3dd9e982f00fdbe
parent[idleaction] Log shutdown/reboot/.. details in exam mode (diff)
downloadmltk-414047494e8e8930fecc6847e8d3a9505327652c.tar.gz
mltk-414047494e8e8930fecc6847e8d3a9505327652c.tar.xz
mltk-414047494e8e8930fecc6847e8d3a9505327652c.zip
[xorg] Add libinput config to enable click-on-tap
-rw-r--r--core/modules/xorg/data/etc/X11/xorg.conf.d/40-libinput.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/modules/xorg/data/etc/X11/xorg.conf.d/40-libinput.conf b/core/modules/xorg/data/etc/X11/xorg.conf.d/40-libinput.conf
new file mode 100644
index 00000000..beb02f0f
--- /dev/null
+++ b/core/modules/xorg/data/etc/X11/xorg.conf.d/40-libinput.conf
@@ -0,0 +1,7 @@
+Section "InputClass"
+ Identifier "libinput touchpad catchall"
+ MatchIsTouchpad "on"
+ MatchDevicePath "/dev/input/event*"
+ Driver "libinput"
+ Option "Tapping" "on" # tap = click
+EndSection