dotfiles/bin/toggle_touchpad
2021-09-21 17:11:57 +02:00

8 lines
170 B
Bash
Executable File

#!/usr/bin/bash
DEV="Elan Touchpad"
ON=$(xinput list-props "$DEV" | awk -F ':' '$1 ~ "Device Enabled" {print $2}')
xinput set-prop "$DEV" "Device Enabled" "$((1-ON))"