public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] alps touchpad problem
@ 2006-03-22  3:26 scwang
  2006-03-22  4:06 ` JimD
  2006-03-22 15:50 ` Richard Fish
  0 siblings, 2 replies; 7+ messages in thread
From: scwang @ 2006-03-22  3:26 UTC (permalink / raw
  To: gentoo-user

I use synaptics driver for my alps touchpad.
Everything else works finely except one thing:
my up scroll key scolls down and down up.

How to solve it?
-- 
Wang ShaoChun(王绍春) <scwang@ios.ac.cn>
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] alps touchpad problem
  2006-03-22  3:26 [gentoo-user] alps touchpad problem scwang
@ 2006-03-22  4:06 ` JimD
  2006-03-22  9:47   ` scwang
  2006-03-22 15:50 ` Richard Fish
  1 sibling, 1 reply; 7+ messages in thread
From: JimD @ 2006-03-22  4:06 UTC (permalink / raw
  To: gentoo-user

On Wed, 22 Mar 2006 11:26:47 +0800
scwang@ios.ac.cn wrote:

> I use synaptics driver for my alps touchpad.
> Everything else works finely except one thing:
> my up scroll key scolls down and down up.
> 
> How to solve it?

What entry do you have in you xorg.conf file?
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] alps touchpad problem
  2006-03-22  4:06 ` JimD
@ 2006-03-22  9:47   ` scwang
  2006-03-22 20:48     ` JimD
  0 siblings, 1 reply; 7+ messages in thread
From: scwang @ 2006-03-22  9:47 UTC (permalink / raw
  To: gentoo-user

The following is touchpad part of my xorg.conf file:

# internal touchpad
Section "InputDevice"
    Identifier 	"Alps Touchpad"
    Driver	"synaptics"
    Option 	"Protocol"	"auto-dev"
    Option 	"Device"	"/dev/input/mice"
    Option      "LeftEdge" "130"
    Option      "RightEdge" "950"
    Option      "TopEdge" "130"
    Option      "BottomEdge" "640"
    Option      "FingerLow" "7"
    Option      "FingerHigh" "8"
    Option      "MaxTapTime" "180"
    Option      "MaxTapMove" "110"
    Option  	"EmulateMidButtonTime" "75"
    Option 	"VertScrollDelta" "20"
    Option 	"HorizScrollDelta" "20"
    Option 	"MinSpeed" "0.60"
    Option 	"MaxSpeed" "1.10"
    Option 	"AccelFactor" "0.030"
    Option 	"EdgeMotionMinSpeed" "200"
    Option 	"EdgeMotionMaxSpeed" "200"
    Option 	"UpDownScrolling" "1"
    Option 	"CircularScrolling" "1"
    Option 	"CircScrollDelta" "0.1" 
    Option 	"CircScrollTrigger" "2"
    Option 	"SHMConfig" "on"
    Option 	"Emulate3Buttons" "on"
EndSection

-- 
Wang ShaoChun(王绍春) <scwang@ios.ac.cn>
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] alps touchpad problem
  2006-03-22  3:26 [gentoo-user] alps touchpad problem scwang
  2006-03-22  4:06 ` JimD
@ 2006-03-22 15:50 ` Richard Fish
  2006-03-23  9:46   ` scwang
  1 sibling, 1 reply; 7+ messages in thread
From: Richard Fish @ 2006-03-22 15:50 UTC (permalink / raw
  To: gentoo-user

On 3/21/06, scwang@ios.ac.cn <scwang@ios.ac.cn> wrote:
> I use synaptics driver for my alps touchpad.
> Everything else works finely except one thing:
> my up scroll key scolls down and down up.
>
> How to solve it?

ZAxisMapping (man 4x mouse).

-Richard

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] alps touchpad problem
  2006-03-22  9:47   ` scwang
@ 2006-03-22 20:48     ` JimD
  0 siblings, 0 replies; 7+ messages in thread
From: JimD @ 2006-03-22 20:48 UTC (permalink / raw
  To: gentoo-user

On Wed, 22 Mar 2006 17:47:33 +0800
scwang@ios.ac.cn wrote:

Go read this page:

http://www.xfree86.org/current/mouse5.html

You want the section on ZAxisMappping.  You basically want to flip the
wheel so that up is down and down is up.

In my InputDevice section for my mouse I have:

Option  "ZAxisMapping" "4 5"

I could reverse them like so:

Option  "ZAxisMapping" "5 4"

Or I could send *negative* values like so:

Option  "ZAxisMapping" "N4 N5"

Or I could send *negative* *reverse* values like so:

Option  "ZAxisMapping" "N5 N4"


I don't have and alps touchpad, so I am not sure which one will work
for you.  Try out each and restart X to see what works.


Jim
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] alps touchpad problem
  2006-03-22 15:50 ` Richard Fish
@ 2006-03-23  9:46   ` scwang
  2006-03-23 23:32     ` Richard Fish
  0 siblings, 1 reply; 7+ messages in thread
From: scwang @ 2006-03-23  9:46 UTC (permalink / raw
  To: gentoo-user

AZixMapping doesn't work.
I think it's for mouse driver of x, not for synaptics drivers!


-- 
Wang ShaoChun(王绍春) <scwang@ios.ac.cn>
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] alps touchpad problem
  2006-03-23  9:46   ` scwang
@ 2006-03-23 23:32     ` Richard Fish
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Fish @ 2006-03-23 23:32 UTC (permalink / raw
  To: gentoo-user

On 3/23/06, scwang@ios.ac.cn <scwang@ios.ac.cn> wrote:
> AZixMapping doesn't work.
> I think it's for mouse driver of x, not for synaptics drivers!

Hmm, your other choice is xmodmap.  Something like:

xmodmap -e "pointer = 1 2 3 5 4" might work.

-Richard

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-03-23 23:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-22  3:26 [gentoo-user] alps touchpad problem scwang
2006-03-22  4:06 ` JimD
2006-03-22  9:47   ` scwang
2006-03-22 20:48     ` JimD
2006-03-22 15:50 ` Richard Fish
2006-03-23  9:46   ` scwang
2006-03-23 23:32     ` Richard Fish

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox