È possibile disattivare temporaneamente il trackpad e il mouse mentre si collega un mouse e una tastiera esterni.
I tasti continuano a essere colpiti accidentalmente mentre ho il mouse e la tastiera collegati.
Modifica
Grazie a tutti coloro che hanno risposto, grazie a questo sono stato in grado di creare un applescript per attivare e disattivare la tastiera integrata:
try
if (display dialog "Press OK to Enable Keyboard and cancel to disable.") = {button returned:"OK"} then
do shell script "sudo kextload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/" with administrator privileges
end if
on error msg
do shell script "sudo kextunload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/" with administrator privileges
end try