Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Can I disable "click-on-tap" for my mousepad on my Dell 8100
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
karl
n00b
n00b


Joined: 10 May 2002
Posts: 9
Location: Nashville and Franklin, TN

PostPosted: Tue Jun 26, 2007 10:22 pm    Post subject: Can I disable "click-on-tap" for my mousepad on my Reply with quote

Can I disable "click-on-tap" for my mousepad on my Dell Inspiron 8100?? I'm always clicking on things I don't want to, and moving focus to places that I don't want to. It's really messing up my productivity. I'm using KDE as my desktop, BTW. Thanks in advance for any help!
_________________
Karl Haines
karleeto on IRC (FreeNode)
karl@karlhaines.com
http://karlhaines.com/
Back to top
View user's profile Send private message
John R. Graham
Administrator
Administrator


Joined: 08 Mar 2005
Posts: 10590
Location: Somewhere over Atlanta, Georgia

PostPosted: Tue Jun 26, 2007 10:47 pm    Post subject: Reply with quote

If it's the same touchpad driver as my Dell (Synaptics, right?), then I can help. Do you have the "synaptics" input driver installed? It should be mentioned in the INPUT_DEVICES variable in make.conf. Here's mine for reference:
Code:
INPUT_DEVICES="keyboard mouse synaptics"
If you don't already have this, then you'll need to modify make.conf and then do an "emerge --update --deep --newuse world".

If you've already gotten that taken care of, then it's simple. In your xorg.conf, you should have an "InputDevice" section for the "mouse". It should have, among other things
Code:
Driver       "synaptics"
Option       "TouchpadOff"  "2"
The second line is the one you need to add (if everything else is set up) to turn off touch clicks. If you need any more help beyond that, look in the /usr/share/doc/synaptics directory. If you need any more help beyond that, feel free to write back. :)

- John
Back to top
View user's profile Send private message
PaulBredbury
Watchman
Watchman


Joined: 14 Jul 2005
Posts: 7310

PostPosted: Tue Jun 26, 2007 11:00 pm    Post subject: Reply with quote

I use on my Dell Inspiron laptop:
Code:
Section "InputDevice"
    Identifier     "Synaptics Touchpad"
    Driver         "synaptics"
    Option         "SendCoreEvents" "true"
    Option         "Device" "/dev/psaux"
    Option         "Protocol" "auto-dev"
    Option         "HorizScrollDelta" "0"

    # More options at http://forums.gentoo.org/viewtopic-t-408544.html
    # To see options:  synclient -l
    Option      "LeftEdge"      "1900"
    Option      "RightEdge"     "6000"
    Option      "TopEdge"       "3900"
    Option      "BottomEdge"        "5000"
    Option      "FingerLow"     "25"
    Option      "FingerHigh"        "30"
    Option      "MaxTapTime"        "0"
    Option      "MaxTapMove"        "220"
    Option      "MinSpeed"      "0.045"
    Option      "MaxSpeed"      "0.075"
    Option      "AccelFactor"       "0.0010"
    Option      "SHMConfig"     "on"
    Option      "EdgeMotionUseAlways"   "0"
    Option      "UpDownScrolling"   "0"
EndSection
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum