SparkyLinux Forums

Installation & Upgrade => Installation => Topic started by: 0day on September 03, 2017, 01:03:01 PM

Title: tapping on mini hp
Post by: 0day on September 03, 2017, 01:03:01 PM
synaptic touch does not work on my hp mini 110 even the vertical scroll of the touchpad
Title: Re: tapping on mini hp
Post by: paxmark1 on September 05, 2017, 06:18:35 PM
more info please.  inxi or lspci or egrep or ...

running egrep on a Sparky with DE of lxqt on old Aspire one yields for me 
SynPS/2 Synaptics Touchpad

https://wiki.debian.org/SynapticsTouchpad
QuoteIn most cases, make sure you have the xserver-xorg-input-libinput package installed, and not the xserver-xorg-input-synaptics package.

btw "man 4 synaptics" is not an abbreviation for "for" but informs the man command to go to section 4 - there is a gui for upgrading called "synaptic" in a different section.

Are you talking about the synpatic drivers still in ancient linuxmint (problematic for me in company computer) or that the touchpad has a brand name of synaptic.  What is your DE.

Me on the locked down work computer in Mint17 I just plug in a usb mouse and disable the touchpad.  I do like systemd. 

In Sparky the touchpad works beautifully. 
Title: Re: tapping on mini hp
Post by: 0day on September 06, 2017, 07:42:20 AM
My touchpad is synaptics, de is jwm.
Title: Re: tapping on mini hp
Post by: paxmark1 on September 06, 2017, 06:10:38 PM
Looking at
https://github.com/joewing/jwm

and
https://github.com/joewing/jwm/commit/8cb8d0e8685be76d126eb488c3bc3b5d26c1f347

I have to wonder at touchpad implemention for jwm  It looks to me that it is being developed by a skilled coder.
https://www.joewing.net/resume.shtml
It was updated 46 days ago.  Tiling DE's are a favourite for keyboarding pros who utilize the mouse much less than most folk.  Looking at
https://www.joewing.net/projects/jwm/config.shtml      I do not see much info about touchpads

Easiest way to get specific info on touch pads for JWM is to see if there is an irc for JWM

There is still  the suggestions at the Debian wiki about /etc/X11/xorg.conf.d/  for the 40 (or 50) libinput section  - the 70 synaptics section  might be deprecated. The synaptics section can be reinstalled made the default.  Have you checked the Debian forum, it has a larger user base for the same base system?
http://forums.debian.net/viewtopic.php?f=7&t=133720&p=648575&hilit=synaptics#p648575

I believe  /etc ... is the destination for copying from /usr/share to enable the changes.  If I am wrong, someone else please correct me.   I am doing research on this myself for a presentation to IT in Omaha for old linux mint problems at work.  I will only get one shot for presenting to them.  Keep digging. 

Title: Re: tapping on mini hp
Post by: 0day on September 06, 2017, 10:07:52 PM
solved: i remove xserver-xorg-input-synaptics package and $ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm