¿Hay algún comando de terminal o script que pueda utilizar para desactivar el ajuste de brillo en todo el sistema? Actualmente administro una gran red de ordenadores para un distrito escolar y estamos buscando una solución fácil para deshabilitar el acceso a esa funcionalidad.
Respuestas
¿Demasiados anuncios?
Fuzzy Purple Monkey
Puntos
702
También puede 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 añadir
* * * * * /usr/local/bin/brightness -v 0.5
a crontab para restablecer el brillo al 50% cada minuto.
Puedes 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>
Polo
Puntos
574
El siguiente AppleScript subirá el brillo al máximo y luego desactivará el brillo adaptativo.
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