From 2c9c0f883ad9ecce4ff2b16af4d39db1ea06a721 Mon Sep 17 00:00:00 2001 From: Sameer Paudel <83913671+Sameer292@users.noreply.github.com> Date: Sat, 7 Feb 2026 18:52:01 +0545 Subject: [PATCH] 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 --- install/config/all.sh | 1 + install/config/hardware/synaptic-touchpad.sh | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100755 install/config/hardware/synaptic-touchpad.sh diff --git a/install/config/all.sh b/install/config/all.sh index 1ce7fbec..7d4b520f 100644 --- a/install/config/all.sh +++ b/install/config/all.sh @@ -39,3 +39,4 @@ run_logged $OMARCHY_INSTALL/config/hardware/fix-surface-keyboard.sh run_logged $OMARCHY_INSTALL/config/hardware/fix-asus-rog-audio-mixer.sh run_logged $OMARCHY_INSTALL/config/hardware/fix-asus-rog-mic.sh run_logged $OMARCHY_INSTALL/config/hardware/fix-yt6801-ethernet-adapter.sh +run_logged $OMARCHY_INSTALL/config/hardware/synaptic-touchpad.sh diff --git a/install/config/hardware/synaptic-touchpad.sh b/install/config/hardware/synaptic-touchpad.sh new file mode 100755 index 00000000..cc726520 --- /dev/null +++ b/install/config/hardware/synaptic-touchpad.sh @@ -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 \ No newline at end of file