我正在使用一台运行 Ubuntu 16 的 Acer Aspire 3680,它带有 Intel GMA 950 显卡,但我找不到调整屏幕对比度设置的命令。当前设置下,太多颜色和灰色被冲淡了。
什么命令或图形实用程序可以做到这一点?
答案1
在命令行(终端)上,尝试写入
xgamma -gamma 0.3
您应该会看到非常明显的差异。尝试不同的值。1.0 是正常值。设置较低的伽马将增加亮值的对比度(减少白化),而设置较高的伽马将增加暗值的对比度(但增加白化)。
答案2
也许你可以尝试“xcalib”。
sudo apt-get install xcalib
默认(清除):
xcalib -c
加载ICC文件:
xcalib ICC_file.icc
调整对比度:
xcalib -co 70 -a
PS. 数字表示百分比,-a 表示更改,如果你想要进行更多调整,请询问“man”!哈哈
man xcalib
希望有帮助!
答案3
xgamma
我对、compizconfig-settings-manager
或不太走运xcalib
。
最后,我能够xrandr
成功地改变屏幕的对比度(和其他设置)。
这是在配备 Nvidia Geforce GTX 显卡的 MSI 笔记本电脑上进行的。
安装:
sudo apt-get update
sudo apt-get install x11-xserver-utils
首先运行 xrandr 查看可用的屏幕。eDP-1-1
在我的例子中,是唯一连接的屏幕。然后运行xrandr --output <your screen> --gamma r:g:b
请参阅下面我的终端的输出。
$ xrandr
Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 32767 x 32767
HDMI-0 disconnected (normal left inverted right x axis y axis)
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
eDP-1-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
1920x1080 60.01*+ 59.93
1680x1050 59.95 59.88
1600x1024 60.17
...
...
512x384 60.00
400x300 60.32 56.34
320x240 60.05
$ xrandr --output eDP-1-1 --gamma 0.8:0.8:0.8
答案4
我为 xcalib 编写了一个 GUI 前端,可以在以下位置找到:https://github.com/Ablinne/kolorcontrol。
它分别提供亮度/颜色滑块和红/绿和蓝通道的伽玛。它将显示自动启动脚本的命令。