web-dev-qa-db-ja.com

コマンドラインを使用して明るさと色を変更するにはどうすればよいですか?

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

私はFedoraとUbuntuで試していますが、今のところうまくいきません。

フォローアップ:

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

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を実行する必要がある場合があります。

6
rozcietrzewiacz

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.
1
äxl