1
0

libinput-measure-touchpad-pressure.man 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .TH libinput-measure-touchpad-pressure "1"
  2. .SH NAME
  3. libinput\-measure\-touchpad\-pressure \- measure pressure properties of devices
  4. .SH SYNOPSIS
  5. .B libinput measure touchpad\-pressure [\-\-help] [options]
  6. [\fI/dev/input/event0\fI]
  7. .SH DESCRIPTION
  8. .PP
  9. The
  10. .B "libinput measure touchpad\-pressure"
  11. tool measures the pressure of touches on a touchpad. This is
  12. an interactive tool. When executed, the tool will prompt the user to
  13. interact with the touchpad. On termination, the tool prints a summary of the
  14. pressure values seen. This data should be attached to any
  15. pressure\-related bug report.
  16. .PP
  17. For a full description on how libinput's pressure-to-click behavior works, see
  18. the online documentation here:
  19. .I https://wayland.freedesktop.org/libinput/doc/latest/touchpad-pressure.html
  20. and
  21. .I https://wayland.freedesktop.org/libinput/doc/latest/palm-detection.html
  22. .PP
  23. This is a debugging tool only, its output may change at any time. Do not
  24. rely on the output.
  25. .PP
  26. This tool usually needs to be run as root to have access to the
  27. /dev/input/eventX nodes.
  28. .SH OPTIONS
  29. If a device node is given, this tool opens that device node. Otherwise, this
  30. tool searches for the first node that looks like a touchpad and uses that
  31. node.
  32. .TP 8
  33. .B \-\-help
  34. Print help
  35. .TP 8
  36. .B \-\-touch\-thresholds=\fI"down:up"\fR
  37. Set the logical touch pressure thresholds to
  38. .I down
  39. and
  40. .I up,
  41. respectively. When a touch exceeds the pressure in
  42. .I down
  43. it is considered logically down. If a touch is logically down and goes below
  44. the pressure in
  45. .I up,
  46. it is considered logically up. The thresholds have to be in
  47. device-specific pressure values and it is required that
  48. .I down
  49. >=
  50. .I up.
  51. .TP 8
  52. .B \-\-palm\-threshold=\fIN\fR
  53. Assume a palm threshold of
  54. .I N.
  55. The threshold has to be in device-specific pressure values.
  56. .TP 8
  57. .B \-\-thumb\-threshold=\fIN\fR
  58. Assume a thumb threshold of
  59. .I N.
  60. The threshold has to be in device-specific pressure values.
  61. .PP
  62. If the touch-thresholds or the palm-threshold are not provided,
  63. this tool uses the thresholds provided by the device quirks (if any) or the
  64. built-in defaults.
  65. .SH LIBINPUT
  66. Part of the
  67. .B libinput(1)
  68. suite