doc: list-quirks should be quirks list

while at it replace also a code comment in the same line.

Signed-off-by: David Santamaría Rogado <howl.nsp@gmail.com>
Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1432>
This commit is contained in:
David Santamaría Rogado 2026-02-20 19:56:46 +01:00
parent 3428edf1ea
commit a86b8a0008
3 changed files with 5 additions and 5 deletions

View file

@ -124,7 +124,7 @@ and product name (pn).
Once in place, run the following command to verify the quirk is valid and Once in place, run the following command to verify the quirk is valid and
works for your device: :: works for your device: ::
$ sudo libinput list-quirks /dev/input/event10 $ sudo libinput quirks list /dev/input/event10
AttrPressureRange=10:8 AttrPressureRange=10:8
Replace the event node with the one from your device. If the 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 Once in place, run the following command to verify the quirk is valid and
works for your device: :: works for your device: ::
$ sudo libinput list-quirks /dev/input/event10 $ sudo libinput quirks list /dev/input/event10
AttrTouchSizeRange=10:8 AttrTouchSizeRange=10:8
Replace the event node with the one from your device. If the Replace the event node with the one from your device. If the

View file

@ -82,10 +82,10 @@ files will not be used.
Debugging 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 verify the changes. The tool can be pointed at the data directory to
analyse, use `--verbose` to get more info. For example: 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
``` ```

View file

@ -24,7 +24,7 @@
#include "config.h" #include "config.h"
/* This has the hallmarks of a library to make it re-usable from the tests /* 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 * library you'd expect though
*/ */