コマンドラインを使用して明るさと色を変更するには?

コマンドラインを使用して明るさと色を変更するには?

明るさと色を変更する方法はありますか?コマンドラインツールを使用していますか?

FedoraとUbuntuで試していますが、これまでは成功しませんでした。

フォローアップ:

[command]    [conneccted output]   [effects R:G:B, value 0 to 255]        
|     /      |            /        |            /
^    ^       ^            ^        ^           ^
xrandr       --output VGA1         --gamma 0:0:0

答え1

ツールを使用してガンマ設定(色と有効コントラスト)を変更できますxrandr。まず、モニターの出力名を決定します。

 $ xrandr -q | grep connected
 DFP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 477mm x 268mm
 CRT1 disconnected (normal left inverted right x axis y axis)

上記の例では、モニターを接続して出力として処理しました。DFP1。それではガンマ修正を例に挙げてみましょう。

$ xrandr --output DFP1 --gamma 0.8:0.8:1.1

ガンマ値の形式はですRed:Green:Blue

編集する:別のオプションはxcalib(最初にインストールする必要があるかもしれません)です。-a接続されているディスプレイに直接影響を与えるためにパラメータと一緒に使用できます。xcalib詳しくは、出力を参照してください。残念ながら、色/明るさの設定は追加されているように見えるため、randr --output ... --gamma 1:1:1デフォルトに戻る必要があるかもしれません。

答え2

xrandrマンページ:

一部の xrandr バージョンには次のオプションもあります。

   --brightness brightness

          Multiply the gamma values on the crtc currently attached to  the
          output  to specified floating value. Useful for overly bright or
          overly  dim  outputs.   However,  this  is   a   software   only
          modification,  if  your  hardware has support to actually change
          the brightness, you will probably prefer to use xbacklight.

関連情報