回答:
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 to DVIアダプタ経由でサードパーティディスプレイのDDC / CIをサポートするをご覧ください。
brightness
でなくというコマンドをインストールしました 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