Skip to content

Instantly share code, notes, and snippets.

@NishargShah
Created January 8, 2022 08:21
Show Gist options
  • Save NishargShah/27a821d090bc49745043df4680d65401 to your computer and use it in GitHub Desktop.
Save NishargShah/27a821d090bc49745043df4680d65401 to your computer and use it in GitHub Desktop.
Help to toggle touchpad on/off
#!/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