Esiste un comando che posso usare per disabilitare le regolazioni della luminosità?

2

C'è un comando o uno script che posso usare per disabilitare il sistema di regolazione della luminosità? Attualmente gestisco una vasta rete di computer per un distretto scolastico e stiamo cercando una soluzione facile per disabilitare l'accesso a tale funzionalità.

    
posta user290257 27.06.2014 - 19:51
fonte

2 risposte

1

Potresti anche eseguire

curl https://raw.githubusercontent.com/serverhorror/brightness/master/brightness.c>brightness.c;gcc -std=c99 -o /usr/local/bin/brightness brightness.c -framework IOKit -framework ApplicationServices

e quindi aggiungere

* * * * * /usr/local/bin/brightness -v 0.5

a crontab per ripristinare la luminosità al 50% ogni minuto.

Puoi disattivare i tasti di luminosità con KeyRemap4MacBook :

<?xml version="1.0"?>
<root>
  <item>
    <name>custom</name>
    <identifier>custom</identifier>
    <autogen>__KeyToKey__ KeyCode::BRIGHTNESS_DOWN, KeyCode::VK_NONE</autogen>
    <autogen>__KeyToKey__ KeyCode::BRIGHTNESS_UP, KeyCode::VK_NONE</autogen>
  </item>
</root>
    
risposta data 29.06.2014 - 13:10
fonte
0

Il seguente AppleScript aumenterà la luminosità e disabiliterà la luminosità adattiva.

tell application "System Preferences"
    -- launch
    -- activate
    set current pane to pane id "com.apple.preference.displays"
    reveal anchor "displaysDisplayTab" of current pane
    tell application "System Events"
        tell process "System Preferences"
            tell group 1 of tab group 1 of window 1
                set value of slider 1 to 1.0 -- max
                tell checkbox 1
                    if value is 1 then click
                end tell
            end tell
        end tell
    end tell
    quit -- optional
end tell

Fonte.

    
risposta data 27.06.2014 - 19:57
fonte

Leggi altre domande sui tag