Intenté "apagar" el mousepad desde el menú de configuración del ratón, pero no conseguí ninguna opción. Entonces tuve que descubrir qué nombre tenía mi ratón, para lo que utilicé el siguiente comando:
rodolfo@tiuna:~$ xinput list --short | grep -i 'touchpad' ⎜ ↳ SynPS/2 Synaptics TouchPad id=12 [slave pointer (2)]
Y luego para encender y apagar el ratón fácilmente creé el siguiente script:
#!/bin/bash if [ $# -gt 0 ] && [ $1 == "on" ]; then mode=1 elif [ $# -gt 0 ] && [ $1 == "off" ]; then mode=0 else echo "You must specify an option, on or off" echo "Usage: script.sh on" exit fi format=8 # xinput list --short | grep -i 'touchpad' DISPLAY=:0 xinput set-int-prop 'SynPS/2 Synaptics TouchPad' 'Device Enabled' $format $mode
Entonces, por ejemplo para apagar el mousepad bastaría con hacer:
rodolfo@tiuna:~$ ./mousepad.sh off
Por cierto, tengo instalado Ubuntu 10.10, por lo que supongo que esto funcionaría como mínimo en todas las distribuciones hijas de Debian.
No hay comentarios:
Publicar un comentario