From 78cc88403ccc98ddb935bef368894088622434a9 Mon Sep 17 00:00:00 2001 From: Asocia Date: Mon, 19 Jul 2021 18:22:49 +0300 Subject: [PATCH] TIL: Enabling basic touchpad functionality --- system/enabling-basic-touchpad-functionality.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 system/enabling-basic-touchpad-functionality.md diff --git a/system/enabling-basic-touchpad-functionality.md b/system/enabling-basic-touchpad-functionality.md new file mode 100644 index 0000000..0d75f37 --- /dev/null +++ b/system/enabling-basic-touchpad-functionality.md @@ -0,0 +1,11 @@ +When you install a new system, touchpad may not work as you expect. The scrolling direction is probably reversed and tap to click is not enabled. You can fix it by creating a file `/etc/X11/xorg.conf.d/30-touchpad.conf` and put the following content inside it: +``` +Section "InputClass" + Identifier "touchpad catchall" + Driver "libinput" + Option "Tapping" "on" + Option "NaturalScrolling" "true" +EndSection +``` + +After that you need to restart X server.