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 18:52:01 +05:45
committed by GitHub
parent 8a58b8153c
commit 2c9c0f883a
2 changed files with 7 additions and 0 deletions

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