[svlug] KUDOS: Turn off touchpad in Linux Mint
Steve Litt
slitt at troubleshooters.com
Mon Feb 6 17:51:14 PST 2017
On Thu, 2 Feb 2017 19:33:24 -0700
Jesse Monroy <jesse650 at gmail.com> 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
More information about the svlug
mailing list