mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
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
This commit is contained in:
@@ -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-audio-mixer.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/hardware/fix-asus-rog-mic.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/fix-yt6801-ethernet-adapter.sh
|
||||||
|
run_logged $OMARCHY_INSTALL/config/hardware/synaptic-touchpad.sh
|
||||||
|
|||||||
6
install/config/hardware/synaptic-touchpad.sh
Executable file
6
install/config/hardware/synaptic-touchpad.sh
Executable file
@@ -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
|
||||||
Reference in New Issue
Block a user