Re: Emulate mouse wheel with touchpad? - SOLVED really

2014-01-06 Thread csanyipal
On Mon, Jan 06, 2014 at 11:58:24AM +0100, [email protected] wrote:
> On Sun, Jan 05, 2014 at 08:13:35PM +0100, [email protected] wrote:
> > On Sun, Jan 05, 2014 at 07:06:44PM +, Dick Middleton wrote:
> > > On 01/05/14 16:20, [email protected] wrote:
> > > > Hi,
> > > > 
> > > > I have installed WindowMaker version 0.95.5 on Arch Linux on my
> > > > Acer Aspire v3-571 laptop. 
> > > > 
> > > > It has a Touchpad which I can use to emulate mouse wheel to
> > > > scrolling web pages, etc., but only when I use Cinnamon Desktop
> > > > Environment. Here, in Windowmaker I can't use touchpad to scroll
> > > > webpages. 
> > > > 
> > > > Is there a chance to setup touchpad to scroll within WindowMaker too?
> > > 
> > > 
> > > 
> > > It's a long while since I played with this.
> > > 
> > > There's an xorg driver called synaptic or some such that might help.
> > > 
> > > This is what Debian throws up, might get you started:
> > > 
> > > xserver-xorg-input-mtrack - Multitouch X input driver
> > > xserver-xorg-input-multitouch - Multitouch X input driver
> > > xserver-xorg-input-synaptics - Synaptics TouchPad driver for X.Org server
> > 
> > In the meanwhile I found a solution.
> > 
> > I installed the gpointing-device-settings package and b running it, I
> > can setup the touchpad so I can use it's scroll capabilitiy ( the
> > right edge ) in WindowMwker too. :) 
> 
> Well, that was yesterday. Today it doesn't work anymore.
> When I try to run gpointing-device-settings I get error mesage:
> An X error occurred. The error was BadAtom (invalid Atom parameter).
> 
> So, I must to search other solution, as You advice me.
> 
> Here, on Arch Linux I can find 
> extra/xf86-input-synaptics 1.7.2-1 (xorg-drivers xorg) [installed]
> 
> So, I have /etc/X11/xorg.conf.d/50-synaptics.conf file, with the
> content:
> 
> # Additional options may be added in the form of
> #   Option "OptionName" "value"
> #
> Section "InputClass"
> Identifier "touchpad catchall"
> Driver "synaptics"
> MatchIsTouchpad "on"
> Option "TapButton1" "1"
> Option "TapButton2" "2"
> Option "TapButton3" "3"
> # This option is recommend on all Linux systems using evdev, but cannot be
> # enabled by default. See the following link for details:
> # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
> MatchDevicePath "/dev/input/event*"
> EndSection
> 
> Section "InputClass"
> Identifier "touchpad ignore duplicates"
> MatchIsTouchpad "on"
> MatchOS "Linux"
> MatchDevicePath "/dev/input/mouse*"
> Option "Ignore" "on"
> EndSection
> 
> # non-synaptics clickpads.
> # This option is only interpreted by clickpads.
> Section "InputClass"
> Identifier "Default clickpad buttons"
> MatchDriver "synaptics"
> Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
> #   To disable the bottom edge area so the buttons only work as
> # buttons,
> #   not for movement, set the AreaBottomEdge
>Option "AreaBottomEdge" "82%"
> EndSection
> 
> # This option disables software buttons on Apple touchpads.
> # This option is only interpreted by clickpads.
> Section "InputClass"
> Identifier "Disable clickpad buttons on Apple touchpads"
> MatchProduct "Apple|bcm5974"
> MatchDriver "synaptics"
> Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
> EndSection
> 
> I suppose I must to add some option here, right?

Finally I find the solution.
I red the Arch Wiki here:
https://wiki.archlinux.org/index.php/Touchpad_Synaptics

I changed the /etc/X11/xorg.conf.d/50-synaptics.conf file so:

Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "-1"
Option "TapButton3" "3"
Option "VertEdgeScroll" "on"
Option "HorizTwoFingerScroll" "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection


However, I found to to one can scroll with two finger by using
touchpad with the default settings. 

-- 
Regards from Pal


-- 
To unsubscribe, send mail to [email protected].


Re: Emulate mouse wheel with touchpad?

2014-01-06 Thread csanyipal
On Sun, Jan 05, 2014 at 08:13:35PM +0100, [email protected] wrote:
> On Sun, Jan 05, 2014 at 07:06:44PM +, Dick Middleton wrote:
> > On 01/05/14 16:20, [email protected] wrote:
> > > Hi,
> > > 
> > > I have installed WindowMaker version 0.95.5 on Arch Linux on my
> > > Acer Aspire v3-571 laptop. 
> > > 
> > > It has a Touchpad which I can use to emulate mouse wheel to
> > > scrolling web pages, etc., but only when I use Cinnamon Desktop
> > > Environment. Here, in Windowmaker I can't use touchpad to scroll
> > > webpages. 
> > > 
> > > Is there a chance to setup touchpad to scroll within WindowMaker too?
> > 
> > 
> > 
> > It's a long while since I played with this.
> > 
> > There's an xorg driver called synaptic or some such that might help.
> > 
> > This is what Debian throws up, might get you started:
> > 
> > xserver-xorg-input-mtrack - Multitouch X input driver
> > xserver-xorg-input-multitouch - Multitouch X input driver
> > xserver-xorg-input-synaptics - Synaptics TouchPad driver for X.Org server
> 
> In the meanwhile I found a solution.
> 
> I installed the gpointing-device-settings package and b running it, I
> can setup the touchpad so I can use it's scroll capabilitiy ( the
> right edge ) in WindowMwker too. :) 

Well, that was yesterday. Today it doesn't work anymore.
When I try to run gpointing-device-settings I get error mesage:
An X error occurred. The error was BadAtom (invalid Atom parameter).

So, I must to search other solution, as You advice me.

Here, on Arch Linux I can find 
extra/xf86-input-synaptics 1.7.2-1 (xorg-drivers xorg) [installed]

So, I have /etc/X11/xorg.conf.d/50-synaptics.conf file, with the
content:

# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection

# non-synaptics clickpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
#   To disable the bottom edge area so the buttons only work as
# buttons,
#   not for movement, set the AreaBottomEdge
   Option "AreaBottomEdge" "82%"
EndSection

# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection

I suppose I must to add some option here, right?

-- 
Regards from Pal


-- 
To unsubscribe, send mail to [email protected].


Re: Emulate mouse wheel with touchpad? - SOLVED

2014-01-05 Thread csanyipal
On Sun, Jan 05, 2014 at 07:06:44PM +, Dick Middleton wrote:
> On 01/05/14 16:20, [email protected] wrote:
> > Hi,
> > 
> > I have installed WindowMaker version 0.95.5 on Arch Linux on my Acer Aspire 
> > v3-571 laptop.
> > 
> > It has a Touchpad which I can use to emulate mouse wheel to scrolling web 
> > pages, etc., but only when I use Cinnamon Desktop Environment. Here, in 
> > Windowmaker I can't use touchpad to scroll webpages.
> > 
> > Is there a chance to setup touchpad to scroll within WindowMaker too?
> 
> 
> 
> It's a long while since I played with this.
> 
> There's an xorg driver called synaptic or some such that might help.
> 
> This is what Debian throws up, might get you started:
> 
> xserver-xorg-input-mtrack - Multitouch X input driver
> xserver-xorg-input-multitouch - Multitouch X input driver
> xserver-xorg-input-synaptics - Synaptics TouchPad driver for X.Org server

In the meanwhile I found a solution.

I installed the gpointing-device-settings package and b running it, I
can setup the touchpad so I can use it's scroll capabilitiy ( the
right edge ) in WindowMwker too. :) 

-- 
Regards from Pal


-- 
To unsubscribe, send mail to [email protected].


Re: Emulate mouse wheel with touchpad?

2014-01-05 Thread Dick Middleton
On 01/05/14 16:20, [email protected] wrote:
> Hi,
> 
> I have installed WindowMaker version 0.95.5 on Arch Linux on my Acer Aspire 
> v3-571 laptop.
> 
> It has a Touchpad which I can use to emulate mouse wheel to scrolling web 
> pages, etc., but only when I use Cinnamon Desktop Environment. Here, in 
> Windowmaker I can't use touchpad to scroll webpages.
> 
> Is there a chance to setup touchpad to scroll within WindowMaker too?



It's a long while since I played with this.

There's an xorg driver called synaptic or some such that might help.

This is what Debian throws up, might get you started:

xserver-xorg-input-mtrack - Multitouch X input driver
xserver-xorg-input-multitouch - Multitouch X input driver
xserver-xorg-input-synaptics - Synaptics TouchPad driver for X.Org server

Dick


-- 
To unsubscribe, send mail to [email protected].