Files
pims-custom-scripts/scripts/toggle-touchpad
2024-08-26 10:41:09 +02:00

11 lines
258 B
Bash
Executable File

#!/bin/bash
ID=`xinput list | grep -Eio '(touchpad|glidepoint)\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}'`
STATE=`xinput list-props $ID | grep 'Device Enabled' | awk '{print $4}'`
if [ $STATE -eq 1 ]
then
xinput disable $ID
else
xinput enable $ID
fi