Tenia un problema un poc molest en el teclat del portàtil, consistia en que quan estava escrivint textos un poquet llargs el cursor canviava de línia aparentment aleatòriament , per fi he descobert que el meu touchpad no es bloqueja quan estic escrivint, solucionat amb aquest script :). He col·locat una combinació de tecles per activar-lo i desactivar-lo per tindre més control 🙂
#!/bin/bash estado=$(synclient -l | grep Touch) if [[ $estado == ' TouchpadOff = 0' ]];then synclient TouchpadOff=1 notify-send bloqueado \touchpad -i /usr/share/pixmaps/accessx-status-applet/mousekeys-base.png else synclient TouchpadOff=0 notify-send desbloqueado \touchpad -i /usr/share/pixmaps/accessx-status-applet/mousekeys-base.png fi exit