-
Notifications
You must be signed in to change notification settings - Fork 1
/
Touchpad.txt
27 lines (22 loc) · 903 Bytes
/
Touchpad.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Content-Type: text/x-zim-wiki
Wiki-Format: zim 0.4
Creation-Date: 2016-12-27T05:40:10+01:00
====== Touchpad ======
Created tirsdag 27 december 2016
**To get a proper working touch - specially lousy on the Asus Zenbook models - a little setting up is required. The default mouse behavior is terrible, so you will want to set this at a early state.**
== Installation ==
**# The Wayland driver is a better solution. Install it with a Xorg-wrapper.**
$ pacman -S xf86-input-libinput
== Configuration ==
**# Create a file in **///etc/X11/xorg.conf.d/30-touchpad.conf//** and add the following**
{{{code: lang="texinfo" linenumbers="True"
Section "InputClass"
Identifier "ETPS/2 Elantech Touchpad"
Driver "libinput"
MatchIsTouchpad "on"
Option "PalmDetect" "1"
Option "PalmMinWidth" "8"
Option "PalmMinZ" "100"
Option "Tapping" "on"
EndSection
}}}