FAQ Search Today's Posts Mark Forums Read

» Linux Archive
Home
New Posts
Search
FAQ


Go Back   Linux Archive > Debian > Debian User

 
 
LinkBack Thread Tools
 
Old 08-21-2008, 12:27 PM
Curt Howland
 
Default Turning off touchpad "scroll"

-----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+HfDv ZEnVNxS7PMDWz+
A38J8u82MQO85bhLDqeS7HDshlkUv3eGdLgeCa60msy5vfs/yq5NiNyHrDWkB4Ld
/PiZfjYOMbCSl/Rjzk2IJ7w+9dNTkh28y8tqeRmnwFwJey3wmSLcZ2oUMDch5Ll4
ldB+5cZBFXExcmTqVOhE6VdZDr4anfFmqs0aV8nybZIMjpQBJV r0ZJcYQGzmqiVu
JYKM9C74CVUltUzQdPjkfJoeXkyO9hPURDyCA+mv39tPTLr/6XMJCSyvWGrJRw3R
HnptOF8RlMN1OTPft2qJgHsuzY46B/WgjrFGnFfpsE4AqBqI438stw==
=swfj
-----END PGP SIGNATURE-----


--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
 
Old 08-21-2008, 01:06 PM
"Felipe Gallois"
 
Default Turning off touchpad "scroll"

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 <Howland@priss.com> 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+HfDv ZEnVNxS7PMDWz+

A38J8u82MQO85bhLDqeS7HDshlkUv3eGdLgeCa60msy5vfs/yq5NiNyHrDWkB4Ld

/PiZfjYOMbCSl/Rjzk2IJ7w+9dNTkh28y8tqeRmnwFwJey3wmSLcZ2oUMDch5Ll4

ldB+5cZBFXExcmTqVOhE6VdZDr4anfFmqs0aV8nybZIMjpQBJV r0ZJcYQGzmqiVu

JYKM9C74CVUltUzQdPjkfJoeXkyO9hPURDyCA+mv39tPTLr/6XMJCSyvWGrJRw3R

HnptOF8RlMN1OTPft2qJgHsuzY46B/WgjrFGnFfpsE4AqBqI438stw==

=swfj

-----END PGP SIGNATURE-----





--

To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org

with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org





--
gallois
aka Felipe Gallois
website: www.gallois.com.br
blog: www.gallois.com.br/blog
 
Old 08-21-2008, 03:34 PM
Andrew Sackville-West
 
Default Turning off touchpad "scroll"

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
 

Thread Tools




All times are GMT. The time now is 04:06 AM.

VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2007 - 2008, www.linux-archive.org