Files
omarchy/install/config/hardware/fix-synaptic-touchpad.sh
2026-02-07 14:09:16 +01:00

6 lines
212 B
Bash
Executable File

# 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