mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
6 lines
212 B
Bash
Executable File
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 |