답변:
Applescript를 통해 수행하고 다음과 같이 실행할 수 있습니다.
주차:
tell application "System Events"
key code 144
end tell
밝게 :
tell application "System Events"
key code 145
end tell
이를 .script 파일로 저장 한 후 다음과 같이 CLI에서 실행할 수 있습니다.
osascript ~/Path/to/File
당신은 이것을 참조 할 수 있습니다 .
이 방법으로 도 할 수 있지만 더 많은 설정이 필요합니다.
이 명령 행 도구는 github.com/nriley/brightness 에서 설치할 수 있습니다 . homebrew가 있으면 설치가 매우 쉽습니다.
brew install brightness
사용법은 간단합니다.
brightness 1
brightness 0.5
불행히도 외부 모니터에서는 작동하지 않습니다. Apple 은 이유에 대한 배경은 Apple Thunderbolt-DVI 어댑터 를 통해 타사 디스플레이 용 DDC / CI를 지원합니까?를 참조하십시오 .
brightness
, not 이라는 명령을 설치했습니다 screenbrightness
. 그렇지 않으면, 이것은 설명대로 작동했습니다. 감사!
brightness
(커뮤니티의 누군가가 이미 답을 고쳤습니다).
CLI를 사용하여 밝기 설정을 지원하는 노드 모듈을 만들었습니다. https://github.com/kevva/brightness-cli를 참조 하십시오 .
npm install --global brightness-cli
그런 다음 brightness
명령 줄에서 실행하면 됩니다.
$ brightness 100 /usr/local/lib/node_modules/brightness-cli/cli.js:3 const brightness = require('brightness'); ^^^^^ SyntaxError: Use of const in strict mode. at Module._compile (module.js:439:25) at Object.Module._extensions..js (module.js:474:10) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Function.Module.runMain (module.js:497:10) at startup (node.js:119:16) at node.js:902:3