SparkyLinux Forums

Software & hardware support => Hardware => Topic started by: drspastic on October 11, 2020, 10:12:48 PM

Title: how to disable touchscreen?
Post by: drspastic on October 11, 2020, 10:12:48 PM
so i have this old cf19 laptop that wont die. after the last cocktail was poured into it the touchscreen started making random moves and even after disassembly and cleaning. unplugging doesnt help because the wires still pick up static or something. i used to run ubuntu and could do xinput command to disable device 9 which was touchscreen.
now i have installed sparky and its running well but i cant disable touch because sparky doesnt use xinput.
how do i disable it? preferably some way tat i can add to startup script, or some way tat doesnt involve recompiling the kernel to remove touch support.

thanks


ps. i have never spilt a drink in my life. james... you are a prize plum!
Title: Re: how to disable touchscreen?
Post by: pavroo on October 12, 2020, 08:23:29 PM
Check here:
https://vitux.com/disable-touchpad-when-mouse-is-connected-to-your-debian-10-system/
Title: Re: how to disable touchscreen?
Post by: manyroads on October 13, 2020, 05:10:31 PM
Here's a script I use...

#!/bin/bash
#Touchpad on/off toggle script with notification.
#by ManyRoads http://eirenicon.org

if synclient -l | egrep "TouchpadOff.*= *0" ; then
    synclient TouchpadOff=1
    DISPLAY=:0 notify-send \
               --urgency=normal \
               --icon=/usr/share/icons/HighContrast/32x32/status/touchpad-disabled.png \
               "Touchpad Disbled"
else
    synclient TouchpadOff=0
    DISPLAY=:0 notify-send \
               --urgency=normal \
               --icon=/usr/share/icons/HighContrast/32x32/devices/input-touchpad.png \
               "Touchpad Enabled";
fi
exit 0;