Hello! Really hoping someone can help me here.
Settings > Input Devices > Touchpad > Sensitivity is greyed out. Trying to get palm rejection to work for typing on the laptop.
Investigation below taken from info in this post.
xinput --list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Raydium Corporation Raydium Touch System id=13 [slave pointer (2)]
**⎜ ↳ ELAN0511:01 04F3:302C Mouse id=15 [slave pointer (2)]
⎜ ↳ ELAN0511:01 04F3:302C Touchpad id=16 [slave pointer (2)]
**
cat /proc/bus/input/devices
I: Bus=0018 Vendor=04f3 Product=302c Version=0100
**N: Name=“ELAN0511:01 04F3:302C Mouse” **
P: Phys=i2c-ELAN0511:01
S: Sysfs=/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-ELAN0511:01/0018:04F3:302C.000
7/input/input24
U: Uniq=
H: Handlers=mouse3 event9
B: PROP=0
B: EV=17
B: KEY=30000 0 0 0 0
B: REL=1943
B: MSC=10
I: Bus=0018 Vendor=04f3 Product=302c Version=0100
**N: Name=“ELAN0511:01 04F3:302C Touchpad” **
P: Phys=i2c-ELAN0511:01
S: Sysfs=/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-ELAN0511:01/0018:04F3:302C.000
7/input/input25
U: Uniq=
H: Handlers=mouse4 event10
B: PROP=5
B: EV=1b
B: KEY=e520 10000 0 0 0 0
B: ABS=2e0800000000003
B: MSC=20
cat /var/log/Xorg.0.log | grep "input driver"
18.306] (II) Using input driver 'libinput' for 'Raydium Corporation Raydium Touch System'
18.471] (II) No input driver specified, ignoring this device.
18.473] (II) Using input driver 'libinput' for 'HD WebCam: HD WebCam'
** 18.523] (II) Using input driver ‘libinput’ for ‘ELAN0511:01 04F3:302C Mouse’**
18.578] (II) No input driver specified, ignoring this device.
** 18.583] (II) Using input driver ‘synaptics’ for ‘ELAN0511:01 04F3:302C Touchpad’**
Note: ELAN0511:01 04F3:302C shows up as both a Mouse and Touchpad in the above two commands!
/usr/share/X11/xorg.conf.d/70-synaptics.conf
Section “InputClass”
Identifier “touchpad catchall”
Driver “synaptics”
MatchIsTouchpad “on”
MatchDevicePath “/dev/input/event*”
Option “HorizEdgeScroll” “off”
enable tap-to-click as default (bnc#722457)
Option "TapButton1" "1"
Option "TapButton3" "2"
Option "TapButton2" "3"
EndSection
xinput --list-props 16 | grep "Device Node"
Device Node (303): "/dev/input/event10"
We can see that the device is recognized, is using the synaptics driver, and the synaptics driver seems to be configured correctly. The only lead I see here is that ELAN0511:01 04F3:302C shows up as both a Mouse and Touchpad, but maybe that has nothing to do with it.
Any ideas? Any help would be immensely appreciated!