This commit is contained in:
2023-07-11 10:44:57 +03:00
commit 38ac58fac7
7 changed files with 461 additions and 0 deletions

24
touchpad.md Normal file
View File

@@ -0,0 +1,24 @@
# 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