Esse script deve fazer isso. Salve-o como ~/bin/toggle_touchpad.sh
, altere o valor da variável touchpad
para qualquer touchpad chamado (consulte xinput list
) e, em seguida, mapeie o script para o atalho de teclado desejado. Lembre-se de tornar o script executável com chmod a+x ~/bin/toggle_touchpad.sh
.
#!/bin/bash
## Change this value to whatever your touchpad is called
touchpad='SynPS/2 Synaptics TouchPad'
status=$(xinput list-props "$touchpad" | grep "Device Enabled" | gawk '{print $NF}');
if (( $status==1 )); then
xinput -set-int-prop "$touchpad" "Device Enabled" 8 0
else
xinput -set-int-prop "$touchpad" "Device Enabled" 8 1
fi