Re: KUDOS: Turn off touchpad in Linux Mint

Steve Litt <[email protected]>
Newsgroups gmane.org.user-groups.linux.svlug
Organization Troubleshooters.Com
Message-ID <[email protected]>
On Thu, 2 Feb 2017 19:33:24 -0700
Jesse Monroy <[email protected]> wrote:

> Usually with previous Linuxes and *BSD finding the answer
> was a major PITA.
> 
> First try.
> Google: linux mint turn off touchpad
> 
> First forum and first answer:
> https://forums.linuxmint.com/viewtopic.php?t=124795
> 
> THE ANSWER IS:
> synclient TouchpadOff=1

And here's my shellscript, called "touchtoggle", which I associate with
an easy hotkey on every laptop I own:

===================================================
#!/bin/sh

curstate=`synclient | grep -i TouchpadOff | sed -e"s/.*= //"`
if test "$curstate" = "1"; then
	synclient TouchpadOff=0
else
	synclient TouchpadOff=1
fi
===================================================

 
SteveT

Steve Litt 
January 2017 featured book: Troubleshooting: Just the Facts
http://www.troubleshooters.com/tjust
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.