¿Hay algún comando que pueda usar para desactivar los ajustes de brillo?

2

¿Hay algún comando o script de terminal que pueda usar para deshabilitar todo el sistema de ajuste de brillo? Actualmente administro una gran red de computadoras para un distrito escolar y estamos buscando una solución fácil para deshabilitar el acceso a esa funcionalidad.

    
pregunta user290257 27.06.2014 - 19:51

2 respuestas

1

También puedes ejecutar

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

y luego agregar

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

a crontab para restablecer el brillo al 50% cada minuto.

Puede desactivar las teclas de brillo 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>
    
respondido por el user495470 29.06.2014 - 13:10
0

El siguiente AppleScript aumentará el brillo al máximo y luego lo deshabilitará.

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

Source.

    
respondido por el aglasser 27.06.2014 - 19:57

Lea otras preguntas en las etiquetas