Created
April 19, 2020 02:42
-
-
Save abemedia/caaa99f3c8182dd1ef135a9516aea27c to your computer and use it in GitHub Desktop.
Bash script to toggle touchpad on/off
This file contains hidden or 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 | |
read TPdevice <<< $( xinput | sed -nre '/TouchPad/s/.*id=([0-9]*).*/\1/p' ) | |
state=$( xinput list-props "$TPdevice" | grep "Device Enabled" | grep -o "[01]$" ) | |
if [ "$state" -eq '1' ];then | |
xinput --disable "$TPdevice" | |
notify-send Touchpad Disabled | |
else | |
xinput --enable "$TPdevice" | |
notify-send Touchpad Enabled | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment