voidrice/.local/bin/touchpad

10 lines
246 B
Text
Raw Normal View History

2024-02-16 11:41:16 +00:00
#!/bin/bash
# xinput disable "Synaptics TM3145-005"
value=$(xinput --list-props "Synaptics TM3145-005" | head -n 2 | tail -c 2)
if [[ $value -eq 0 ]]
then
xinput enable "Synaptics TM3145-005"
else
xinput disable "Synaptics TM3145-005"
fi