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