Para asignar el guión a un método abreviado de teclado, puede asignarle un Servicio de automatización .
Abra Automator.app y elija Servicio, y configure "Recieves text
" en la parte superior a no input
.
Arrastre en la acción "Ejecutar AppleScript" de la biblioteca. Puede encontrarlo buscando applecript en el lado izquierdo de la ventana.
Reemplace lo que la acción ya contiene con el script a continuación.
Guarde, luego vaya a System Preferences > Keyboard > Keyboard Shortcuts > Services
para agregar las teclas de acceso directo que desee (haga clic en Agregar acceso directo a la derecha).
Esteeselscript:
propertylargeCursorSize:2.0--1xto4xsizetellapplication"System Preferences" to reveal anchor "Seeing_Display" of pane id "com.apple.preference.universalaccess"
tell application "System Events"
set theSlider to slider "Cursor Size:" of group 1 of window 1 of application process "System Preferences"
if value of theSlider is 1.0 then
set value of theSlider to largeCursorSize
else
set value of theSlider to 1.0
end if
end tell