1
Fork 0

Add thinkpad/touchpad

This commit is contained in:
Edgar P. Burkhart 2022-08-22 21:17:55 +02:00
parent 0cc6206dac
commit 44129f57c8
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,10 @@
---
title: "Thinkpad"
weight: 1
bookFlatSection: true
# bookToc: true
# bookHidden: false
# bookCollapseSection: false
# bookComments: false
# bookSearchExclude: false
---

View File

@ -0,0 +1,47 @@
---
title: "Pavé tactile"
weight: 1
# bookFlatSection: false
# bookToc: true
# bookHidden: false
# bookCollapseSection: false
# bookComments: false
# bookSearchExclude: false
---
# Pavé tactile
## Installation
Le pavé tactile est configuré par `libinput`, installé par défaut comme dépendance de Xorg et Wayland sur Archlinux.
## Configuration
### Runtime
Pour changer la configuration en fonctionnement, le paquet `xorg-xinput` peut être utilisé.
Les commandes principales sont les suivantes :
```
$ xinput list
$ xinput list-props $device
$ xinput set-prop $device $option $setting
```
### Démarrage
#### Xorg
Le pavé tactile peut être configuré par un fichier de configuration Xorg (`/etc/X11/xorg.conf.d/30-touchpad.conf` par
exemple).
##### Exemple
```
Section "InputClass"
Identifier "touchpad"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "NaturalScrolling" "true"
EndSection
```
## Sources
1. <https://wiki.archlinux.org/title/Libinput>