diff options
Diffstat (limited to 'scripts/toggle-touchpad.sh')
-rwxr-xr-x | scripts/toggle-touchpad.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/toggle-touchpad.sh b/scripts/toggle-touchpad.sh new file mode 100755 index 0000000..5a30528 --- /dev/null +++ b/scripts/toggle-touchpad.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +ID=$(xinput list | grep -Eo 'TouchPad\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}') +STATE=$(xinput list-props "$ID" | awk '/Device Enabled/ {print $4}') + +if [ "$STATE" -eq 1 ] +then + xinput disable "$ID" +else + xinput enable "$ID" +fi |