update uninstall script, renames

This commit is contained in:
Pim Nelissen
2024-08-26 10:41:09 +02:00
parent 88205af3a5
commit aa8f16a571
5 changed files with 19 additions and 5 deletions

10
scripts/toggle-touchpad Executable file
View File

@ -0,0 +1,10 @@
#!/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