Me gustaría crear accesos directos para "ampliar" el tamaño del texto de la ventana del Finder.
Lo he intentado en AppleScript
tell application "Finder"
if text size of list view options of front window = 10 then
set text size of list view options of front window to 16
else
set text size of list view options of front window to 10
end if
end tell
que funciona pero no puedo ver el cambio hasta que "refresco" la ventana cerrando y volviendo a abrirla.
Intenté agregar
update items of front window
pero esto no hace nada.
¿Alguna forma de hacerlo con elegancia?
Estoy en El Capitán.