명령줄을 사용하여 밝기와 색상을 변경하는 방법은 무엇입니까?

명령줄을 사용하여 밝기와 색상을 변경하는 방법은 무엇입니까?

밝기와 색상을 변경할 수 있는 방법이 있나요? 명령줄 도구를 사용하시나요?

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.

관련 정보