You are not logged in.

#1 2016-10-08 22:39:10

ntdoherty
New Member
Registered: 2016-09-06
Posts: 3

Thinkpad trackpad problems

Hi all,

I promise I've tried to find information about this but have hit a wall.

I installed bunsenlabs on a Lenovo Thinkpad e555 and I cannot get two-finger scrolling to work. It seems that the synaptics settings, whether accessed through the GUI application or the config files, have no effect on the behavior of the trackpad. The only way to address it is to grab scrollbars with either tapping or clicking, very different process.

As far as I have found, the problem is that gpointing-device-settings is the only way to control this model trackpad.  This software is in wheezy and sid, only, and has been sitting for a while.

The trackpad problem is too annoying for me to keep using bunsenlabs on my laptop. This is a shame because it's the only thing that doesn't work perfectly but it's so irritating that I can't accommodate myself to it.

Does anyone have any suggestions? For now I'm using Manjaro XFCE. I like it plenty but I would rather have Debian as my base again and honestly the aesthetics of bunsenlabs is still better.

Thanks muchly for any feedback.

ND


“If you miss the present moment, you miss your appointment with life. That is very serious!”
– Thich Nhat Hanh

Offline

#2 2016-10-08 23:17:39

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: Thinkpad trackpad problems

Don't the Debian instructions work for you? https://wiki.debian.org/InstallingDebia … Trackpoint

Last edited by damo (2016-10-08 23:23:17)


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#3 2016-10-08 23:47:04

ntdoherty
New Member
Registered: 2016-09-06
Posts: 3

Re: Thinkpad trackpad problems

I'll try it and reply. I don't think I came across those directions. Derp.


“If you miss the present moment, you miss your appointment with life. That is very serious!”
– Thich Nhat Hanh

Offline

#4 2016-10-21 02:34:14

lcafiero
The BL Guy
From: Felton, California, USA
Registered: 2015-09-30
Posts: 49
Website

Re: Thinkpad trackpad problems

I'm just throwing this out there because it may be a solution, as this is somewhat related to the turning-off-the-#@*!&%-tap-to-click in synclient (I feel very strongly about turning off tap-to-click, can you tell?).

As synclient has two settings for two-finger scroll -- VertTwoFingerScroll and HorizTwoFingerScroll -- and each defaults to 0 (off) in the long list of synclient settings, you need to turn them on. So to a terminal and type in (one at a time):

synclient VertTwoFingerScroll=1
synclient HorizTwoFingerScroll=1

But wait, there's more! If this works, it will be active only until you shut down your computer. Want to have it start up next time you boot? Simple.

You have to edit your autostart by right-clicking on the desktop, going to Preferences > Openbox > Edit autostart and add this to the bottom of the file:

#Enable two-finger scrolling
synclient VertTwoFingerScroll=1 &
synclient HorizTwoFingerScroll=1 &

And that way, at least theoretically (and this is how it works for turning off the tap-to-click), your synclient settings will be set to vertical and horizontal two-finger scrolling.

I hope this helps.


Res publica non dominetur

Offline

#5 2016-10-21 06:15:52

ohnonot
...again
Registered: 2015-09-29
Posts: 5,592

Re: Thinkpad trackpad problems

lcafiero wrote:

Edit autostart and add this to the bottom of the file:

#Enable two-finger scrolling
synclient VertTwoFingerScroll=1 HorizTwoFingerScroll=1 &

fixed that for you.

Offline

#6 2016-10-21 06:48:06

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Thinkpad trackpad problems

Or just add the options to the line we already have:

https://github.com/BunsenLabs/bunsen-co … ostart#L25

smile

EDIT: I hate tap-to-click as well sad

Last edited by Head_on_a_Stick (2016-10-21 06:49:03)

Offline

#7 2016-10-22 12:06:13

lcafiero
The BL Guy
From: Felton, California, USA
Registered: 2015-09-30
Posts: 49
Website

Re: Thinkpad trackpad problems

ohnonot wrote:
lcafiero wrote:

Edit autostart and add this to the bottom of the file:

#Enable two-finger scrolling
synclient VertTwoFingerScroll=1 HorizTwoFingerScroll=1 &

fixed that for you.

Six of one, half-dozen of the other. Two ways of doing the same thing, apparently.


Res publica non dominetur

Offline

#8 2016-10-22 15:14:56

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: Thinkpad trackpad problems

lcafiero wrote:

...
Six of one, half-dozen of the other. Two ways of doing the same thing, apparently.

Except it is only one process instead of two?


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#9 2016-10-23 01:02:58

lcafiero
The BL Guy
From: Felton, California, USA
Registered: 2015-09-30
Posts: 49
Website

Re: Thinkpad trackpad problems

One process or two? How big a difference does that make, exactly?

Lesson learned.


Res publica non dominetur

Offline

#10 2016-10-23 10:17:02

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: Thinkpad trackpad problems

lcafiero wrote:

One process or two? How big a difference does that make, exactly?.....

Probably not  much, but more elegant? smile


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#11 2016-10-23 23:17:17

lcafiero
The BL Guy
From: Felton, California, USA
Registered: 2015-09-30
Posts: 49
Website

Re: Thinkpad trackpad problems

damo wrote:

Probably not  much, but more elegant? smile

*shrug* Granted. However, how exactly the original solution is "fixed" -- fixing something implies that it was/is broken -- is still a mystery, since both solutions essentially work, elegantly or otherwise.

Again, lesson learned: I yield to others in answering questions from here on in.


Res publica non dominetur

Offline

#12 2016-10-25 18:51:28

ohnonot
...again
Registered: 2015-09-29
Posts: 5,592

Re: Thinkpad trackpad problems

lcafiero wrote:

Again, lesson learned: I yield to others in answering questions from here on in.

what is this, are you hurt or what?
i was just trying to improve something. it's the way of foss. no harm intended.
in any case, HoaS' subsequent remark "fixes" it even better.

Offline

#13 2016-10-25 18:58:45

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Thinkpad trackpad problems

Games of code golf are a common recreation on these boards, please don't take any suggestions as personal slights, that is not the way they are intended.

Your contributions are always welcome lcafiero, please don't be discouraged.

Offline

#14 2016-10-26 04:03:27

johnraff
nullglob
From: Nagoya, Japan
Registered: 2015-09-09
Posts: 12,661
Website

Re: Thinkpad trackpad problems

ohnonot wrote:

it's the way of foss.

smile


...elevator in the Brain Hotel, broken down but just as well...
( a boring Japan blog (currently paused), now on Bluesky, there's also some GitStuff )

Introduction to the Bunsenlabs Boron Desktop

Offline

Board footer

Powered by FluxBB