SEARCH

Enter your search query in the box above ^, or use the forum search tool.

You are not logged in.

#1 2011-11-09 18:33:50

rhowaldt
#!*$%:)
Registered: 2011-03-09
Posts: 4,396

How To: disable (Synaptics) touchpad when an USB mouse is connected

i never use my touchpad except for when i don't have my USB mouse connected. so it would make sense to have it disabled when i do.
i've read on the Arch-wiki that you can do this through udev, but i'm not quite confident enough to try that out yet, and then i stumbled across this simple solution, which i really like, because it is so simple. in fact, it is a bit of a hack, but it works.

this is for synaptics touchpads only, as the synclient is the synaptics touchpad driver. however, the concept stays the same for any other touchpad i guess.

make a bash-script somewhere (some place where you have your bash scripts). i called it 'touchoff.bash'.

gedit touchoff.bash

Gedit opens to an empty file. copy-paste in this code:

#!/bin/bash
# thank you: http://www.linuxquestions.org/questions/debian-26/shmconfig-in-debian-645503/#post3838794
# script to turn off touchpad if mouse present at login
# synclient is the synaptic utility to manage the touchpad
# grep the "lsusb" output and do a wordcount on number of lines with "Logitech" which should = 1 if a Logitech mouse is present
#
# Obviously the "Logitech" should be replaced with your brand of mouse, and perhaps be more exact in case you have other USB devices that have similar names
/usr/bin/synclient touchpadoff=`lsusb | grep Logitech | wc -l`

save it.
now type:

chmod +x touchoff.bash

this makes it executable.

now, if you want to try how this works in the terminal (for better understanding, and to test if it actually works), type this:

synclient touchpadoff=1

this should disable the touchpad (try it!) to enable it again, type:

synclient touchpadoff=0

so now you have your own script for switching the touchpad on and off when a USB mouse is present. however, this is not nearly good enough. we want this stuff to happen automatically on start-up! so, let's add it to the Openbox autostart.sh file.
right-click somewhere to bring up the Openbox menu. go: Settings > Openbox Config > Edit autostart.sh
in the file, move somewhere to the bottom, so all the other stuff is loaded already before executing this command. now add the link to your script. for me, this is:

/usr/local/bin/scripts/touchoff.bash &

for you it might be a different directory, so mind that stuff. also, do not forget the &. if you want to know why, read the autostart.sh documentation, google it.

try it out! logout, log back in, and see if it works!

Offline

Help fund CrunchBang, donate to the project!

#2 2011-11-09 19:16:06

VastOne
#! Ranger
From: #! Fringe Division
Registered: 2011-04-26
Posts: 9,721
Website

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

Great How To rhowaldt

Well written and precise..


VSIDO
If you build it, they will come...
Words That Build Or Destroy

Offline

#3 2011-11-09 19:38:16

rhowaldt
#!*$%:)
Registered: 2011-03-09
Posts: 4,396

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

^ i hate... hey, i hate a lot of things! anyway, i didn't really like it when i was very very new to linux that there were people explaining things halfway. so stuff like 'put that in your config file'... and me: 'where the hell is the file?'... have to do a separate google to find that out, while he could've been more specific. explain stuff, we are all newbies damnit!

so, you know that one song by Michael Jackson, that goes: "if you wanna make the world a better place, take a look at yourself and make that, CHAAAAAAAANGE!"... so that's why!

Last edited by rhowaldt (2011-11-09 19:40:22)

Offline

#4 2011-11-09 19:40:39

VastOne
#! Ranger
From: #! Fringe Division
Registered: 2011-04-26
Posts: 9,721
Website

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

lol... That is the ONLY song by MJ I ever liked and own

I use the same philosophy in all of my How To's as well


VSIDO
If you build it, they will come...
Words That Build Or Destroy

Offline

#5 2011-11-10 01:24:50

machinebacon
#! unstable
From: PRC
Registered: 2009-07-02
Posts: 6,212
Website

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

Very nice, very nice, thanks Ro!
I additionally have 'ton.sh' and 'toff.sh' scripts which are simply synclient touchpadoff=0/1 called by keyboard shortcuts. There is also syndaemon to disable touchpad when typing...

100 Euro Question: How to disable mouse when touchpad is connected? big_smile (kidding)


Start Distrohopping here! -> Break your own... cool  VSIDO  cool LinuxCNC  kiss Frugalware <- It's all just a kernel.

Offline

#6 2011-11-11 03:16:07

bennisixx
#! Member
From: the woods arkansas
Registered: 2011-11-10
Posts: 99
Website

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

thank you for this.

Offline

#7 2011-11-11 15:26:16

brunomalone
Member
Registered: 2009-10-20
Posts: 22

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

Thank you rhowaldt!

Offline

#8 2012-02-04 12:39:13

len
Member
From: Another World
Registered: 2012-01-24
Posts: 21
Website

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

it's really great works..


┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳
┻┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳┻
┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳┻┳
Future is like a WALL.

Offline

#9 2012-05-15 12:53:43

oylenshpeegul
Member
From: Maryland, USA
Registered: 2012-01-01
Posts: 37
Website

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

Nice write up!

On waldorf, I had to install usbutils first, to get lsusb

sudo apt-get install usbutils

Offline

#10 2012-05-25 17:34:24

ChickenPie4Tea
#! Junkie
Registered: 2012-02-17
Posts: 338

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

i see a lot of stuff around on turning off your touch pad but no-one says why?  I dont use my touch pad but what advantage is there in turning it off - is it using a lot of resources or something?


Troll = not a fanatic

Offline

#11 2012-05-25 17:37:11

pidsley
#! Die Hard
Registered: 2012-05-23
Posts: 1,348

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

Techniques to Disable Touchpad – Why would you want to?

Want to know how to Disable the Touchpad on your laptop? There are many reasons to want to turn off or disable touchpads. I know it frustrates me greatly when the bottom of my palms brush the touchpad. The character I was typing suddenly quits appearing, and the random mouse and keyboard effects that happen next cause me no end of grief. Occasionally, I will run across a touchpad that is malfunctioning and is causing random effects without being touched, and there is good reason to want to disable it for this as well.

(from http://disabletouchpad.net/; the "techniques" are for Windows)

Last edited by pidsley (2012-05-25 17:40:10)

Offline

#12 2012-05-26 09:22:23

rhowaldt
#!*$%:)
Registered: 2011-03-09
Posts: 4,396

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

^ exactly that. i touch my touchpad with the bottom of my hands when i type, my mouse moves around, it is annoying. plus, i never use it. so anything i never use AND is annoying at the same thing, i turn off big_smile

Offline

#13 2013-05-01 01:13:29

astoria
New Member
Registered: 2013-05-01
Posts: 2

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

Yeah, this doesn't work for me. I'm 100% I did everything correct. I went over everything a lot of times. It doesn't work.

The scrip works. If I click it. So clearly, lsusb works, the script works, the touchpad gets disabled if I have my mouse in and it doesn't if I  don't.

The problem is that it's not automatic. I tried relog, restart, nada.
If I un-plug and plug my mouse again the touchpad stays on.

If I start #! with my mouse plugged in the touchpad stays on.

Whatever I do, the touchpad only turns off if two conditions are met
1) I click the script
2) The mouse is plugged in

Both in the same time.

The autostart is set fine. I've put the touchoff.bash in /home/astoria/documents/touchoff.bash &

Offline

#14 2013-05-01 07:21:50

Unia
#! Die Hard
From: The Netherlands
Registered: 2010-07-17
Posts: 3,111

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

^ It's not meant to be automatic, it's meant to run once on log in.

If you want things to be automatic, e.g. when you (un)plug your mice, you need to go with udev rules: https://wiki.archlinux.org/index.php/To … _detection


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
      Github || Deviantart

Offline

#15 2013-05-03 18:50:00

th3pr0ph3t
Member
Registered: 2011-03-02
Posts: 28

Re: How To: disable (Synaptics) touchpad when an USB mouse is connected

In my case, the command

synclient touchpadoff=1

worked immediately and was simple enough for me.

And thanks, this is the answer I was expecting.

Offline

Board footer

Powered by FluxBB

Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.

Debian Logo