Created
January 8, 2022 08:21
-
-
Save NishargShah/27a821d090bc49745043df4680d65401 to your computer and use it in GitHub Desktop.
Help to toggle touchpad on/off
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
device=11 | |
state=`xinput list-props "$device" | grep "Device Enabled" | grep -o "[01]$"` | |
if [ $state == '1' ];then | |
xinput --disable $device | |
else | |
xinput --enable $device | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment