mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
6 lines
212 B
Bash
6 lines
212 B
Bash
# 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 |