mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-11-14 04:59:36 +01:00
12 lines
390 B
Bash
Executable File
12 lines
390 B
Bash
Executable File
export `xinput list | grep -i touchpad | awk '{ print $6 }'`
|
|
TOUCH_ENABLED=`xinput list-props $id | grep Device\ Enabled | awk '{ print $4 }'`
|
|
if [ $TOUCH_ENABLED = 0 ]; then
|
|
xinput set-prop $id "Device Enabled" 1
|
|
elif [ $TOUCH_ENABLED = 1 ]; then
|
|
xinput set-prop $id "Device Enabled" 0
|
|
else
|
|
echo "Could not get touchpad status from xinput"
|
|
exit 1
|
|
fi
|
|
exit 0
|