Hi,
I installed Manjaro KDE 64Bit onto an old ASUS Netbook laptop.
I want to disable the touch screen.
The BIOS does not have an option to do the above.
Anyone know how to do the above?
Thanks!
Jesse
Hi,
I installed Manjaro KDE 64Bit onto an old ASUS Netbook laptop.
I want to disable the touch screen.
The BIOS does not have an option to do the above.
Anyone know how to do the above?
Thanks!
Jesse
Execute:
$ xinput list
and find your touchscreen device and take note on its id, should be under “Virtual core pointer” section. Then:
$ xinput list-prop <id>
find the propery “Device enabled” and again take note on its id. Finally:
$ xinput set-prop <touchscreen id> <device enabled id> 0
done. Your touchscreen should be disabled now. Feel free to make a systemd service, startup script or udev rule that executes above lines to automatically disable it at GUI boot or whatever timing you wish.
had to install xinput and reboot - have below and don’t know what to do next:
[jlp@JesseNetbookTwo ~]$ xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ ETPS/2 Elantech Touchpad id=13 [slave pointer (2)]
⎜ ↳ Primax Kensington Eagle Trackball id=14 [slave pointer (2)]
⎜ ↳ USBest Technology SiS HID Touch Controller id=15 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Asus Wireless Radio Control id=7 [slave keyboard (3)]
↳ Video Bus id=8 [slave keyboard (3)]
↳ Power Button id=9 [slave keyboard (3)]
↳ Sleep Button id=10 [slave keyboard (3)]
↳ Asus WMI hotkeys id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
↳ USB2.0 HD UVC WebCam: USB2.0 HD id=16 [slave keyboard (3)]
[jlp@JesseNetbookTwo ~]$ xinput list-prop 15
usage :
xinput get-feedbacks
xinput set-ptr-feedback
xinput set-integer-feedback
xinput get-button-map
xinput set-button-map <map button 1> [<map button 2> […]]
xinput set-pointer [ ]
xinput set-mode ABSOLUTE|RELATIVE
xinput list [–short || --long || --name-only || --id-only] […]
xinput query-state
xinput test [-proximity]
xinput create-master [<sendCore (dflt:1)>] [<enable (dflt:1)>]
xinput remove-master [Floating|AttachToMaster (dflt:Floating)] [] []
xinput reattach
xinput float
xinput set-cp
xinput test-xi2 [–root]
xinput map-to-output
xinput list-props [ …]
xinput set-int-prop <format (8, 16, 32)> [ …]
xinput set-float-prop [ …]
xinput set-atom-prop [ …]
xinput watch-props
xinput delete-prop
xinput set-prop [–type=atom|float|int] [–format=8|16|32] [ …]
xinput disable
xinput enable
[jlp@JesseNetbookTwo ~]$
Sorry, I missed 1 letter, should be xinput list-props.