LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 05-22-2019, 01:45 PM   #1
Caltrop
Member
 
Registered: Jul 2017
Location: Indiana, US
Distribution: Mint Mate
Posts: 68

Rep: Reputation: Disabled
Touchpad Woes...


Old Dell Laptop Linux system died...
New HP Laptop system died...
Used Dell Laptop up & running Linux, but...

Installed Mint 18.2 Mate again since it was the only distro I had on CD/DVD.
Plan on other Distro's but I expect I will have the same issue.

Having issues with the Touchpad.

Set the external Mouse to left-hand and of course the Touchpad does NOT!
And now the tap-click is a Right-Click.
The Left & Right Button are default, not left handed.

Problem is on this system is that the Touchpad is NOT listed as Synaptics.

Code:
/etc/X11/xorg.conf.d
does NOT exist

/usr/share/X11/xorg.conf.d
50-synaptics.conf

$ xinput list
$ xinput list-props "DLL0651:00 06CB:2985"
Device 'DLL0651:00 06CB:2985':
...
        Synaptics Tap Action (307):	2, 3, 0, 0, 3, 1, 2
        Synaptics Click Action (308):	1, 3, 2
...

$ cat /proc/bus/input/devices
...
I: Bus=0018 Vendor=06cb Product=2985 Version=0100
N: Name="DLL0651:00 06CB:2985"
P: Phys=i2c-DLL0651:00
S: Sysfs=/devices/pci0000:00/INT33C3:00/i2c-8/i2c-DLL0651:00/0018:06CB:2985.0002/input/input13
U: Uniq=
H: Handlers=mouse1 event13 
B: PROP=5
B: EV=b
B: KEY=e520 10000 0 0 0 0
B: ABS=673800001000003
So how do I configure this touchpad device "DLL0651:00 06CB:2985".

OK, I installed dconf-editor on this new system.
I swapped the tap-buttons around & got them working right.
But there is no setting for the physical buttons, which are still right-hand oriented.
 
Old 05-23-2019, 06:58 AM   #2
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
google search string "xinput set left handed touchpad"

Make mouse left-handed and touchpad right-handed
If you look at how it is done, then you can, should be able to reverse the settings to get it to switch to left handed touchpad. I'd make a little executable script with the settings inside and add it to the start up list in settings. as most desktops have this option. you also can make the file hidden so you do not hae to look at it every time you open a file manager by adding a dot (.) in the front of the file name.


https://www.linuxquestions.org/quest...ly-4175619714/

with the search string I used there are more hits to look at as well. replacing xinput with synaptics you might pull up some hits how to do this using synaptics as well. Either way the choice is up to you.

for making sure I get the right ID I add awk and pipes, for example
Code:
#!/bin/bash

[[ -z $1 ]] &&
{ xinput set-prop $(xinput | awk '/HP Touch to Pair Mouse/ {print $8}' | cut -d= -f2 | rev | cut -de -f4 | rev) 'libinput Accel Speed' -0.8 &  } ||
{ xinput set-prop $(xinput | awk '/HP Touch to Pair Mouse/ {print $8}' | cut -d= -f2 | rev | cut -de -f4 | rev) 'libinput Accel Speed' $1 &  }
that is in my home bin so I can adjust my bluetooth mouse speed off the cli in a terminal, you have to piece it together if you use this method to make sure you're getting the right column before adding your pipe to rev and cut it.

the point being you could set it up like that and slap it into a file and add that to your startup, in login, or rc.local even, systemd can still do things like that but using the systemd method to set your touch pad via xinput and startup method.

Last edited by BW-userx; 05-23-2019 at 07:19 AM.
 
Old 05-23-2019, 01:19 PM   #3
Caltrop
Member
 
Registered: Jul 2017
Location: Indiana, US
Distribution: Mint Mate
Posts: 68

Original Poster
Rep: Reputation: Disabled
hmm...

It's a Dell Computer with a funky touchpad name.

This is what I am going to try,
in the file: /usr/share/X11/xorg.conf.d/50-synaptics.conf
Code:
Section "InputClass"
        Identifier  "Synaptics"
        MatchProduct "DLL0651:00 06CB:2985"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Option "TapButton1" "2"
        Option "TapButton2" "3"
        Option "TapButton3" "1"
        Option "ClickFinger1" "2"
        Option "ClickFinger2" "0"
        Option "ClickFinger3" "1"
EndSection
Then I might start messing about with 'xinput'.

I have to do that anyway when I hook up an external monitor in Linux Mint.
The mouse & touchpad don't know where they are on the screen.
I remember having to have a script to run at boot to fix things.
Hopefully I can find that backup...?

But for now just trying to get the buttons left-handed.

Great success so far with the external mouse.
It's that darn touchpad giving me headaches.
 
Old 05-23-2019, 01:26 PM   #4
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Which DE are you using? XFCE4 gives me a seperate mouse and touchpad configuration though I can't promise how independent they are.
 
1 members found this post helpful.
Old 05-23-2019, 01:44 PM   #5
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by 273 View Post
Which DE are you using? XFCE4 gives me a seperate mouse and touchpad configuration though I can't promise how independent they are.
Dconf-editor allows the same for MATE in org/gnome/desktop/peripherals/mouse and org/.../touchpad. They appear to be independent because one of the settings is to tie the touchpad left-hand setting to the mouse setting.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Touchpad disable button permanently disables touchpad until reboot William (Dthdealer) Linux - Hardware 12 08-01-2009 10:51 PM
Need to kill touchpad click. (Synaptics Touchpad / FC4) sarysa Linux - Laptop and Netbook 4 02-19-2007 03:15 PM
IBM laptop & touchpad & TrackPoint - touchpad doesn't work! espinosa_cz Linux - Laptop and Netbook 1 08-20-2004 12:45 PM
Using Touchpad + USB WLAN means touchpad and keyboard stops responding randomly ultrabeam16 Linux - Laptop and Netbook 0 03-21-2004 02:19 PM
USBmouse/touchpad together, touchpad behaves erratically Pathian Mandriva 2 01-07-2004 02:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint

All times are GMT -5. The time now is 06:40 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration