pneave

Disable Touch Screen on Lenovo Yoga running Debian Stretch

Jan 9th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.52 KB | None | 0 0
  1. Edit file: /usr/share/X11/xorg.conf.d/40-libinput.conf
  2.  
  3. Look for:
  4.  
  5.    Section "InputClass"
  6.       Identifier "libinput touchscreen catchall"
  7.       MatchIsTouchscreen "on"
  8.       MatchDevicePath "/dev/input/event*"
  9.       Driver "libinput"
  10.    EndSection
  11.  
  12. Change to this and reboot:
  13.  
  14.    Section "InputClass"
  15.       Identifier "libinput touchscreen catchall"
  16.       MatchIsTouchscreen "on"
  17.       MatchDevicePath "/dev/input/event*"
  18.       Driver "libinput"
  19.       Option "Ignore" "on"  # Disable touch screen
  20.    EndSection
Advertisement
Add Comment
Please, Sign In to add comment