You are not logged in.

#1 2012-02-25 20:22:12

acidic
Member
Registered: 2011-11-24
Posts: 27

[SOLVED] Turn off touchpad

My laptops touchpad does not work properly with linux and If I try to use it it has its own ideas about what it wants to do.

I know I can turn it off with

xinput set-prop 13 "Device Enabled" 0

but is there a way of turning it off without having to type that every time I start my computer.

Last edited by acidic (2012-02-25 22:21:58)

Offline

#2 2012-02-25 20:45:46

litemotiv
Forum Fellow
Registered: 2008-08-01
Posts: 5,026

Re: [SOLVED] Turn off touchpad

/etc/X11/xorg.conf.d/10-synaptics.conf

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Option "TouchpadOff" "1"
EndSection

ᶘ ᵒᴥᵒᶅ

Offline

#3 2012-02-25 21:27:49

acidic
Member
Registered: 2011-11-24
Posts: 27

Re: [SOLVED] Turn off touchpad

Thanks but this is not working for me. Its a sentelic touchpad if that makes any difference.

Offline

#4 2012-02-25 21:29:48

bananagranola
Member
From: US
Registered: 2011-08-07
Posts: 88
Website

Re: [SOLVED] Turn off touchpad

If that xinput line works for you, you could put it in a script that runs on startup. .xinitrc, for example.

Offline

#5 2012-02-25 21:54:19

acidic
Member
Registered: 2011-11-24
Posts: 27

Re: [SOLVED] Turn off touchpad

I tried putting it in ~/.xinitrc but that didn't work. I know nothing about scripts. Is there somewhere else I can try putting that line. Thanks

Offline

#6 2012-02-25 22:07:53

bananagranola
Member
From: US
Registered: 2011-08-07
Posts: 88
Website

Re: [SOLVED] Turn off touchpad

Did you add an ampersand (&) after the line in .xinitrc? Did you place it before the "exec" line or whichever line starts your DE/WM?

For example,

xinput set-prop 13 "Device Enabled" 0 &
exec openbox-session

Offline

#7 2012-02-25 22:21:23

acidic
Member
Registered: 2011-11-24
Posts: 27

Re: [SOLVED] Turn off touchpad

Now its working

Thank you

What does the & do?

Offline

#8 2012-02-25 22:27:17

bananagranola
Member
From: US
Registered: 2011-08-07
Posts: 88
Website

Re: [SOLVED] Turn off touchpad

It forks it to the background.

Offline

Board footer

Powered by FluxBB