Vorrei creare scorciatoie per "ingrandire" la dimensione del testo della finestra del Finder.
Ho provato in 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
che funziona ma non riesco a vedere la modifica finché non "aggiorno" la finestra chiudendola e riaprendola.
Ho provato ad aggiungere
update items of front window
ma questo non fa nulla.
Un modo per farlo in modo elegante?
Sono su El Capitan.