Enable Synaptics InterTouch for confirmed touchpads if not already loaded (#4499)

* Enable Synaptics InterTouch for confirmed touchpads if not already loaded

* fix echo message

* remove shebang and echo messages

* check for synaptics intertouch and enable it only if available
This commit is contained in:
Sameer Paudel
2026-02-07 14:07:01 +01:00
committed by GitHub
parent 8a58b8153c
commit 2c9c0f883a
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
# Enable Synaptics InterTouch for confirmed touchpads if not already loaded
if grep -qi synaptics /proc/bus/input/devices \
&& ! lsmod | grep -q '^psmouse'; then
modprobe psmouse synaptics_intertouch=1
fi