voidrice/.scripts/toggletouchpad
2018-07-29 12:16:54 -04:00

4 lines
229 B
Bash
Executable file

#!/bin/bash
# Toggle touchpad. Requires xf86-input-synaptics.
(synclient | grep TouchpadOff.*1 && synclient TouchpadOff=0)>/dev/null && echo "TouchPad reactivated." && exit
synclient TouchpadOff=1 && echo "TouchPad deactivated."