2022-08-22 21:17:55 +02:00
|
|
|
---
|
|
|
|
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 :
|
2023-02-12 10:07:20 +01:00
|
|
|
```fish
|
|
|
|
xinput list
|
|
|
|
xinput list-props $device
|
|
|
|
xinput set-prop $device $option $setting
|
2022-08-22 21:17:55 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### 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
|
2023-02-12 10:07:20 +01:00
|
|
|
```xorg
|
2022-08-22 21:17:55 +02:00
|
|
|
Section "InputClass"
|
|
|
|
Identifier "touchpad"
|
|
|
|
MatchIsTouchpad "on"
|
|
|
|
Option "Tapping" "on"
|
|
|
|
Option "NaturalScrolling" "true"
|
|
|
|
EndSection
|
|
|
|
```
|
|
|
|
|
|
|
|
## Sources
|
|
|
|
|
|
|
|
1. <https://wiki.archlinux.org/title/Libinput>
|