cheat-sheets/touchpad.md
2024-01-19 09:52:59 +03:00

376 B

Settings touchpad

Get device names

libinput list-devices | grep Device

Create config

vim /etc/X11/xorg.conf.d/30-touchpad.conf

---
Section "InputClass"
	Identifier "<device name>"
	MatchIsTouchpad "on"
	Driver "libinput"
	Option "Tapping" "on"
	Option "NaturalScrolling" "true"
	Option "PinchZoom" "on"
	Option "AccelSpeed" "0.5"
EndSection

reboot