Questo AppleScript potrebbe funzionare o meno sul tuo sistema. Nel mio libro Mac Pro che esegue l'ultima versione di Sierra, questo codice seguente attiva la casella di controllo "Regola automaticamente luminosità" Se l'ora corrente è tra le 6:00 e le 18:00, Altrimenti disattiva quella casella di controllo Se è già selezionata.
if hours of (current date) is greater than 6 then
if hours of (current date) is less than 18 then
tell application "System Preferences"
reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays"
end tell
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
tell checkbox "Automatically adjust brightness" of group 2 of tab group 1 to if value is 0 then click
end tell
else
tell application "System Events" to tell process "System Preferences" to tell window "Built-in Retina Display"
tell checkbox "Automatically adjust brightness" of group 2 of tab group 1 to if value is 1 then click
end tell
end if
end if
tell application "System Preferences"
quit
end tell
Puoi regolare i valori delle ore nella parte superiore dello script in base alle tue esigenze
Se le tue preferenze di visualizzazione sono come questa immagine ... Questo script dovrebbe funzionare per te.