Hmmm ... provavelmente @ A.B. está certo. Mas eu tinha um CRT onde o problema era realmente o gama (a curva aplicada à luminosidade para torná-lo linear ao olho). Você pode tentar jogar com os valores da curva. Então:
-
Encontre o nome do seu dispositivo:
[romano:~] % xrandr --current Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767 VGA1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 477mm x 268mm 1920x1080 60.0*+ 1680x1050 60.0 1280x1024 75.0 60.0 1152x864 75.0 1024x768 75.1 60.0 800x600 75.0 60.3 640x480 75.0 60.0 720x400 70.1 HDMI1 disconnected (normal left inverted right x axis y axis) DP1 disconnected (normal left inverted right x axis y axis) HDMI2 disconnected (normal left inverted right x axis y axis) DP2 disconnected (normal left inverted right x axis y axis) VIRTUAL1 disconnected (normal left inverted right x axis y axis)
-
é
VGA1
para mim ... brinque com este comando:[romano:~] % xrandr --output VGA1 --brightness 1.5
-
se isso for uma bagunça (no meu LCD tudo fica praticamente branco ;-) --- não pode ser mostrado com uma captura de tela porque a foto está ok --- pixels ainda são os mesmos), volte com
[romano:~] % xrandr --output VGA1 --brightness 1.0
(Não é uma má idéia tê-lo pronto em outro terminal para que você possa executá-lo cegamente). Você também pode dar uma olhada em --gamma
para um melhor controle. De xrandr
manual:
--gamma red:green:blue Set the specified floating point values as gamma correction on the crtc currently attached to this output. Note that you cannot get two different values for cloned outputs (i.e.: which share the same crtc) and that switching an output to another crtc doesn't change the crtc gamma corrections at all. --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 modifica‐ tion, if your hardware has support to actually change the brightness, you will probably prefer to use xbacklight.
Os valores padrão provavelmente são --gamma 1.0:1.0:1.0 --brightness 1.0
, mas você pode verificar com xrandr --verbose
.