Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
81
rated 0 times [  81] [ 0]  / answers: 1 / hits: 95939  / 2 Years ago, thu, april 28, 2022, 7:40:57

I have a touchscreen, but the drivers are not working properly and interfere with my mouse.



Is it possible to disable my touchscreen , so that I can work again properly?


More From » mouse

 Answers
2

You can try disabling the input device with the xinput command. First see what input devices you have, just type:



xinput


And you should see a list like:



$ xinput 
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Atmel Atmel maXTouch Digitizer id=9 [slave pointer (2)]
⎜ ↳ TPPS/2 IBM TrackPoint id=13 [slave pointer (2)]
⎜ ↳ SynPS/2 Synaptics TouchPad id=12 [slave pointer (2)]
...


Then you can disable the input device you want with this command:



xinput disable 9


Where 9 is the id of the device you want to disable. You can also use the device name between quotes.



In xinput version 1.5.99.1 , you need to do xinput set-prop 9 'Device Enabled' 0 instead. Oddly on xinput v1.6.2 the first way work.


[#35030] Saturday, April 30, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rmodmi

Total Points: 390
Total Questions: 122
Total Answers: 111

Location: Venezuela
Member since Mon, Oct 18, 2021
3 Years ago
;