Re: Turning off touchpad "scroll"

2008-09-27 Thread j t
On Thu, Aug 21, 2008 at 12:27 PM, Curt Howland <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi. Up to date Sid.
>
> Back before the recent changes in X, I had put this in my xorg.conf:
>
> Section "InputDevice"
>Identifier  "Synaptics Touchpad"
>Driver  "synaptics"
>Option  "SendCoreEvents""true"
>Option  "Device""/dev/psaux"
>Option  "Protocol"  "auto-dev"
>Option  "VertEdgeScroll""false"
>Option  "HorizEdgeScroll"   "false"
> EndSection
>
> and the very annoying "scroll" areas were gloriously gone.
>
> But now, after the change in X where most of the specific
> configuration options are autodetected, I'm back to having "scroll"
> areas.
>
> So I put the following into the only place available in the new
> xorg.conf
>
> Section "InputDevice"
>Identifier  "Configured Mouse"
>Driver  "mouse"
>Option  "VertEdgeScroll""false"
>Option  "HorizEdgeScroll"   "false"
> EndSection
>
> but the annoying "scroll" remains.
>
> Suggestions?

Curt, did you get this fixed? If not, does adding the line:

Option "TouchpadOff" "1"

switch off your touchpad completely?

Jaime


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



(Solved) Re: Turning off touchpad "scroll"

2008-08-22 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 21 August 2008, Curt Howland was heard to say:
> But now, after the change in X where most of the specific
> configuration options are autodetected, I'm back to having "scroll"
> areas.

Ok, here's the solution:

I had to add back the Server Layout section, as well as the Synaptics 
Touchpad section, into the new minimalist autoconfigured xorg.conf:

Section "InputDevice"
Identifier  "Synaptics Touchpad"
Driver  "synaptics"
Option  "SendCoreEvents""true"
Option  "Device""/dev/psaux"
Option  "Protocol"  "auto-dev"
Option  "VertEdgeScroll""false"
Option  "HorizEdgeScroll"   "false"
EndSection

Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Synaptics Touchpad"
EndSection

so that the generic mouse would not be used. Without adding the Server 
Layout section, X always chooses the generic mouse, even if the 
Generic Mouse section is commented out.

Unlike more recent touch pads, my 5-year old laptop has a smallish 
touchpad, so I continually ran into the scroll areas, causing 
switching between tabs in Konqueror, or bringing up many minimized 
applications if the mouse was over the task list.

Hooray! So there are three things I must add to the xorg.conf: 
Synaptics Touchpad section, Server Layout section, 
and "Driver "nvidia"" to the Device section. But it is still a much, 
much more simplified xorg.conf than it was, that's for sure.

Thanks to both of you for suggesting trains of inquiry,

Curt-


- -- 
Treason! http://blog.mises.org/archives/007926.asp

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iQEVAwUBSK7DXi9Y35yItIgBAQKaqgf/QH/g72qoKFRItzfA54eAXPlL4zBah10Z
tcUUgronIQViLo9v5pLbUL8wz2+5wbpqu7gNHfmSVZ1fB1NTE0K11nmEf7ZJDVHB
YYGH6nUmo7NzezbJxl1c+lz48yLBf8FQdXO6AvVaSeL42+4wG5W9bomZIsp/pOxb
wK+XjzQozMPNpkhXpFEsKHG1NQY0Qwfx4oQFfNtDaSz9P86gFZHQS1XPs5eATnx1
J+6BNczp+uJ9jz/GbmwJgENkpRD2WFLXssQDUzAFO5uMBCmBACNNAqN69Iw2Ef9r
BV4vX0U2JIKQCtbi8eSTvJM+pOO2O6UAU4FkOWAiID/YN/mJWFCXQA==
=pdBh
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Turning off touchpad "scroll"

2008-08-22 Thread Richard Möhn
On Thu, Aug 21, 2008 at 04:21:36PM -0400, Curt Howland wrote:
> 
> On Thursday 21 August 2008, Andrew Sackville-West 
> <[EMAIL PROTECTED]> was heard to say:
> > just put the missing stuff back into xorg.conf, as a start. X still
> > respects those settings, so far as I know, it just doesn't *need*
> > them anymore.
> 
> I tried that, no joy. I tried copying in the "Synaptics" device, just 
> like in the previous xorg.conf, and also as settings inside 
> the "configured mouse". Neither made any difference.
> 
> I also discovered that while KDE will let me change the magnitude of 
> the scroll events, it will not allow me to turn them off. I cannot 
> set "scroll" to "0", only "1" or more.
> 
> On Thursday 21 August 2008,  
> "Felipe Gallois" <[EMAIL PROTECTED]> was heard to say:
> > it seems that the synaptics drivers are not installed by default in 
> > laptops anymore
> 
> Yet this is what is in /var/log/Xorg.0.log:
> 
> (II) Synaptics touchpad driver version 0.14.6 (1406)
> (--) AlpsPS/2 ALPS GlidePoint auto-dev sets device 
> to /dev/input/event8
> (**) Option "Device" "/dev/input/event8"
> (--) AlpsPS/2 ALPS GlidePoint touchpad found
> (**) AlpsPS/2 ALPS GlidePoint: always reports core events
> (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" 
> (type: MOUSE)
> (--) AlpsPS/2 ALPS GlidePoint auto-dev sets device 
> to /dev/input/event8
> (**) Option "Device" "/dev/input/event8"
> (--) AlpsPS/2 ALPS GlidePoint touchpad found
> 
> so it seems that it is in fact getting loaded. The old configuration 
> is just being ignored.
> 

Have you set up the "ServerLayout" Section in your /etc/X11/xorg.conf?
I'm not shure if it will help, but I think, as I configured some other
things with the touchpad, it just worked after doing this.

With the best greetings

Richard


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Turning off touchpad "scroll"

2008-08-21 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 21 August 2008, Andrew Sackville-West 
<[EMAIL PROTECTED]> was heard to say:
> just put the missing stuff back into xorg.conf, as a start. X still
> respects those settings, so far as I know, it just doesn't *need*
> them anymore.

I tried that, no joy. I tried copying in the "Synaptics" device, just 
like in the previous xorg.conf, and also as settings inside 
the "configured mouse". Neither made any difference.

I also discovered that while KDE will let me change the magnitude of 
the scroll events, it will not allow me to turn them off. I cannot 
set "scroll" to "0", only "1" or more.

On Thursday 21 August 2008,  
"Felipe Gallois" <[EMAIL PROTECTED]> was heard to say:
> it seems that the synaptics drivers are not installed by default in 
> laptops anymore

Yet this is what is in /var/log/Xorg.0.log:

(II) Synaptics touchpad driver version 0.14.6 (1406)
(--) AlpsPS/2 ALPS GlidePoint auto-dev sets device 
to /dev/input/event8
(**) Option "Device" "/dev/input/event8"
(--) AlpsPS/2 ALPS GlidePoint touchpad found
(**) AlpsPS/2 ALPS GlidePoint: always reports core events
(II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" 
(type: MOUSE)
(--) AlpsPS/2 ALPS GlidePoint auto-dev sets device 
to /dev/input/event8
(**) Option "Device" "/dev/input/event8"
(--) AlpsPS/2 ALPS GlidePoint touchpad found

so it seems that it is in fact getting loaded. The old configuration 
is just being ignored.

Curt-


- -- 
Treason! http://blog.mises.org/archives/007926.asp

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iQEVAwUBSK3OUC9Y35yItIgBAQIYuQf/YYIL/fNNAIhJXS1OK+8rXMp9DzQo2XF1
bzPB60xco/FMpaPfnKMR1whKPwKoP+1SwbCm6RM7L2bdMGpW1nkCYzCHri3V7Oh+
3Mh6WfOSf/jKI59wMxS7SSOnrfJ1pmvA5/Ege68MPp9BzYl79ARTAxHpNKY5czdc
n1Wan0eq+do/OhcxxJDcwuvWLRTublkBRDWaQcSouzHqmBs6yP5F7mfI3eoLw5BD
0Ymrnx6ZaQf2peyOMHNfSrrdkXURAMYk/J1UAcddBBuqG5/+eBSfJ0h1zCrBUTdn
yN/QfUMJIn+GK8A5ihsz7GgYvjQ/INblnjEyYsupmDTr1XNQ79wAwQ==
=kWtS
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Turning off touchpad "scroll"

2008-08-21 Thread Andrew Sackville-West
On Thu, Aug 21, 2008 at 07:27:11AM -0400, Curt Howland wrote:
> Hi. Up to date Sid.
> 
> Back before the recent changes in X, I had put this in my xorg.conf:
> 
> Section "InputDevice"
> Identifier  "Synaptics Touchpad"
> Driver  "synaptics"
> Option  "SendCoreEvents""true"
> Option  "Device""/dev/psaux"
> Option  "Protocol"  "auto-dev"
> Option  "VertEdgeScroll""false"
> Option  "HorizEdgeScroll"   "false"
> EndSection
> 
> and the very annoying "scroll" areas were gloriously gone.
> 
> But now, after the change in X where most of the specific 
> configuration options are autodetected, I'm back to having "scroll" 
> areas.
> 
> So I put the following into the only place available in the new 
> xorg.conf
> 
> Section "InputDevice"
> Identifier  "Configured Mouse"
> Driver  "mouse"
> Option  "VertEdgeScroll""false"
> Option  "HorizEdgeScroll"   "false"
> EndSection
> 
> but the annoying "scroll" remains.
> 
> Suggestions?

just put the missing stuff back into xorg.conf, as a start. X still
respects those settings, so far as I know, it just doesn't *need* them
anymore.

A


signature.asc
Description: Digital signature


Re: Turning off touchpad "scroll"

2008-08-21 Thread Felipe Gallois
you should try loading the synaptics driver

install it first

i don't remember exactly the steps, but it is something like that!
it seems that the synaptics drivers are not installed by default in laptops
anymore

cheers!

On Thu, Aug 21, 2008 at 08:27, Curt Howland <[EMAIL PROTECTED]> wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi. Up to date Sid.
>
> Back before the recent changes in X, I had put this in my xorg.conf:
>
> Section "InputDevice"
>Identifier  "Synaptics Touchpad"
>Driver  "synaptics"
>Option  "SendCoreEvents""true"
>Option  "Device""/dev/psaux"
>Option  "Protocol"  "auto-dev"
>Option  "VertEdgeScroll""false"
>Option  "HorizEdgeScroll"   "false"
> EndSection
>
> and the very annoying "scroll" areas were gloriously gone.
>
> But now, after the change in X where most of the specific
> configuration options are autodetected, I'm back to having "scroll"
> areas.
>
> So I put the following into the only place available in the new
> xorg.conf
>
> Section "InputDevice"
>Identifier  "Configured Mouse"
>Driver  "mouse"
>Option  "VertEdgeScroll""false"
>Option  "HorizEdgeScroll"   "false"
> EndSection
>
> but the annoying "scroll" remains.
>
> Suggestions?
>
> - --
> Treason! http://blog.mises.org/archives/007926.asp
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.9 (GNU/Linux)
>
> iQEVAwUBSK1RDy9Y35yItIgBAQLl9gf+OlJ+nPvv9zv+E+HfDvZEnVNxS7PMDWz+
> A38J8u82MQO85bhLDqeS7HDshlkUv3eGdLgeCa60msy5vfs/yq5NiNyHrDWkB4Ld
> /PiZfjYOMbCSl/Rjzk2IJ7w+9dNTkh28y8tqeRmnwFwJey3wmSLcZ2oUMDch5Ll4
> ldB+5cZBFXExcmTqVOhE6VdZDr4anfFmqs0aV8nybZIMjpQBJVr0ZJcYQGzmqiVu
> JYKM9C74CVUltUzQdPjkfJoeXkyO9hPURDyCA+mv39tPTLr/6XMJCSyvWGrJRw3R
> HnptOF8RlMN1OTPft2qJgHsuzY46B/WgjrFGnFfpsE4AqBqI438stw==
> =swfj
> -END PGP SIGNATURE-
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>
>


-- 
gallois
aka Felipe Gallois
website: www.gallois.com.br
blog: www.gallois.com.br/blog


Turning off touchpad "scroll"

2008-08-21 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi. Up to date Sid.

Back before the recent changes in X, I had put this in my xorg.conf:

Section "InputDevice"
Identifier  "Synaptics Touchpad"
Driver  "synaptics"
Option  "SendCoreEvents""true"
Option  "Device""/dev/psaux"
Option  "Protocol"  "auto-dev"
Option  "VertEdgeScroll""false"
Option  "HorizEdgeScroll"   "false"
EndSection

and the very annoying "scroll" areas were gloriously gone.

But now, after the change in X where most of the specific 
configuration options are autodetected, I'm back to having "scroll" 
areas.

So I put the following into the only place available in the new 
xorg.conf

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "VertEdgeScroll""false"
Option  "HorizEdgeScroll"   "false"
EndSection

but the annoying "scroll" remains.

Suggestions?

- -- 
Treason! http://blog.mises.org/archives/007926.asp

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iQEVAwUBSK1RDy9Y35yItIgBAQLl9gf+OlJ+nPvv9zv+E+HfDvZEnVNxS7PMDWz+
A38J8u82MQO85bhLDqeS7HDshlkUv3eGdLgeCa60msy5vfs/yq5NiNyHrDWkB4Ld
/PiZfjYOMbCSl/Rjzk2IJ7w+9dNTkh28y8tqeRmnwFwJey3wmSLcZ2oUMDch5Ll4
ldB+5cZBFXExcmTqVOhE6VdZDr4anfFmqs0aV8nybZIMjpQBJVr0ZJcYQGzmqiVu
JYKM9C74CVUltUzQdPjkfJoeXkyO9hPURDyCA+mv39tPTLr/6XMJCSyvWGrJRw3R
HnptOF8RlMN1OTPft2qJgHsuzY46B/WgjrFGnFfpsE4AqBqI438stw==
=swfj
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]