Touchpad disables after suspend, how can i prevent this?

My touchpad constantly unfuctional after lid closed. It doesn’t matter lid or manual suspend without lid interfere.

Should I restart touchpad services but its looks like I don’t know a setting under the carpet because no hint on the mouse/touchpad settings.
here a topic related this but this is not a solution which i need.

Also, couldn’t found touchpad related service with followings

systemctl status |grep touch
                 │ │ │ └─49160 grep --colour=auto touch
systemctl status|grep synaptics
                 │ │ │ └─49305 grep --colour=auto synaptics
systemctl list-units|grep synaptics
systemctl list-units|grep touch

Have you tried this Touchpad Synaptics - ArchWiki ?

1 Like

thats what I need but should I add this
psmouse.synaptics_intertouch=0
to the modprobe?

No. You have to edit /etc/default/grub to add it as kernel boot parameter to the GRUB_CMDLINE_LINUX_DEFAULT= line …
Example:
from this

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

you make it to be like this

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash psmouse.synaptics_intertouch=0"

But make sure you keep actually the entries you have now there. Then you run:
sudo mkinitcpio -P
and
sudo update-grub

Then reboot, and test …

1 Like

lookslike working perfect :heart:

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.