47 lines
977 B
Markdown
47 lines
977 B
Markdown
---
|
|
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>
|