06-19-2017, 07:50 PM
(This post was last modified: 06-19-2017, 08:33 PM by MarkHaysHarris777.)
Basically, you tell the graphical interface to ignore the events from the touchpad; you can put that into a script.
Note: I will post the script after testing; basically the script uses 'xinput' to find the id of the HAILUCK slave pointer; on my system it is id=8. Then, xinput is used to disable it:
sudo xinput list
sudo xinput --disable 8 <==== your id may be different for HAILUCK slave pointer
To turn it back on, use:
sudo xinput --enable 8
sudo xinput list-props 8 |less
My script does all of this interactively from a terminal ; toggling the resource ON if its OFF , and OFF if its ON; you can also automate that further if you like; I find that temporarily disabling the touchpad completely is helpful when typing, and when programming.
Again; I had to tweak the script when porting to the pinebook from the synaptics T61; when I'm finished testing I will post the script here so that others may have the benefit too.
Note: I will post the script after testing; basically the script uses 'xinput' to find the id of the HAILUCK slave pointer; on my system it is id=8. Then, xinput is used to disable it:
sudo xinput list
sudo xinput --disable 8 <==== your id may be different for HAILUCK slave pointer
To turn it back on, use:
sudo xinput --enable 8
sudo xinput list-props 8 |less
My script does all of this interactively from a terminal ; toggling the resource ON if its OFF , and OFF if its ON; you can also automate that further if you like; I find that temporarily disabling the touchpad completely is helpful when typing, and when programming.
Again; I had to tweak the script when porting to the pinebook from the synaptics T61; when I'm finished testing I will post the script here so that others may have the benefit too.
marcushh777
please join us for a chat @ irc.pine64.xyz:6667 or ssl irc.pine64.xyz:6697
( I regret that I am not able to respond to personal messages; let's meet on irc! )
please join us for a chat @ irc.pine64.xyz:6667 or ssl irc.pine64.xyz:6697
( I regret that I am not able to respond to personal messages; let's meet on irc! )