blob: 36e8f5989b45c04b99629b96463fd7f904d0d342 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
TRACKPADSTATE=$(xinput --list-props "SynPS/2 Synaptics TouchPad" | head -2 | tail -1 | grep '.$' -o)
if [[ "$TRACKPADSTATE" == "0" ]]
then
xinput enable "SynPS/2 Synaptics TouchPad"
else
xinput disable "SynPS/2 Synaptics TouchPad"
fi
|