diff options
Diffstat (limited to 'local/bin/touchpad-toggle')
| -rwxr-xr-x | local/bin/touchpad-toggle | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/local/bin/touchpad-toggle b/local/bin/touchpad-toggle new file mode 100755 index 0000000..e4dc959 --- /dev/null +++ b/local/bin/touchpad-toggle @@ -0,0 +1,12 @@ +#!/bin/sh + +touchpad_name='ETPS/2 Elantech Touchpad' + +active="$(xinput list-props "$touchpad_name" | grep 'Device Enabled' | cut -f 3)" + +if [ "$active" -eq 1 ] +then + xinput disable "$touchpad_name" +else + xinput enable "$touchpad_name" +fi |
