From a86b8a0008ff70ab6ed4878cf865e065acbbb616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Santamar=C3=ADa=20Rogado?= Date: Fri, 20 Feb 2026 19:56:46 +0100 Subject: [PATCH] doc: list-quirks should be quirks list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit while at it replace also a code comment in the same line. Signed-off-by: David SantamarĂ­a Rogado Part-of: --- doc/user/touchpad-pressure-debugging.rst | 4 ++-- quirks/README.md | 4 ++-- src/quirks.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/user/touchpad-pressure-debugging.rst b/doc/user/touchpad-pressure-debugging.rst index 36f448e4..84ccd371 100644 --- a/doc/user/touchpad-pressure-debugging.rst +++ b/doc/user/touchpad-pressure-debugging.rst @@ -124,7 +124,7 @@ and product name (pn). Once in place, run the following command to verify the quirk is valid and works for your device: :: - $ sudo libinput list-quirks /dev/input/event10 + $ sudo libinput quirks list /dev/input/event10 AttrPressureRange=10:8 Replace the event node with the one from your device. If the @@ -218,7 +218,7 @@ and product name (pn). Once in place, run the following command to verify the quirk is valid and works for your device: :: - $ sudo libinput list-quirks /dev/input/event10 + $ sudo libinput quirks list /dev/input/event10 AttrTouchSizeRange=10:8 Replace the event node with the one from your device. If the diff --git a/quirks/README.md b/quirks/README.md index f970cbe6..2133ae2e 100644 --- a/quirks/README.md +++ b/quirks/README.md @@ -82,10 +82,10 @@ files will not be used. Debugging --------- -When modifying a data file, use the `libinput list-quirks` tool to +When modifying a data file, use the `libinput quirks list` tool to verify the changes. The tool can be pointed at the data directory to analyse, use `--verbose` to get more info. For example: ``` -libinput list-quirks --data-dir /path/to/git/repo/quirks/ --verbose /dev/input/event0 +libinput quirks list --data-dir /path/to/git/repo/quirks/ --verbose /dev/input/event0 ``` diff --git a/src/quirks.c b/src/quirks.c index 3d430486..2aaa436f 100644 --- a/src/quirks.c +++ b/src/quirks.c @@ -24,7 +24,7 @@ #include "config.h" /* This has the hallmarks of a library to make it re-usable from the tests - * and from the list-quirks tool. It doesn't have all of the features from a + * and from the quirks list tool. It doesn't have all of the features from a * library you'd expect though */