mirror of
https://github.com/X11Libre/xf86-input-synaptics.git
synced 2026-04-14 11:54:16 +00:00
20 lines
408 B
Bash
20 lines
408 B
Bash
#!/bin/bash
|
|
while true
|
|
do
|
|
if [ -e ~/.touchpad.on ]; then
|
|
synclient TouchpadOff=0
|
|
else
|
|
if [ -e ~/.touchpad.off ]; then
|
|
synclient TouchpadOff=1
|
|
else
|
|
if [ "`grep -e Mouse /proc/bus/usb/devices`" ]; then
|
|
synclient TouchpadOff=1
|
|
else
|
|
synclient TouchpadOff=0
|
|
fi
|
|
fi
|
|
fi
|
|
sleep 3
|
|
done
|
|
|