README 1019 B

123456789101112131415161718192021
  1. This is a simple X11 utility that disables a tablet's touchscreen when the
  2. digitizer is near.
  3. It requires the XInput extension and its accompanying library. On Debian, this
  4. is available in the package libxi-dev.
  5. The default pen and touch devices are specified by the PENDEVICE and
  6. TOUCHDEVICE symbolic constants #defined near the top of the code,
  7. respectively. These are the devices on a ThinkPad Yoga (first generation),
  8. on which this program was originally developed. Command line options are
  9. available to override either or both. The options are -t for the touch
  10. device and -p for the pen device. Check the output of xinput(1) for the names
  11. of the devices on your system. Note that if the names of your devices contain
  12. spaces, which is likely, you'll need to quote them in your shell.
  13. A future revision will include an actual man page. As it is, the command is
  14. very simple and provides a basic usage synopsis with the -h option.
  15. A possibility for the future is some sort of intelligent default search
  16. mechanism.