如何使 Ubuntu 灰度化?

d3p*_*3pd 6 colors xorg

我想让一切都变成灰度。实用程序 xcalib 可用于使用以下命令反转显示的颜色(显示的每种颜色都更改为其补色):

xcalib -i -a
Run Code Online (Sandbox Code Playgroud)

我怎样才能使显示灰度?例如,我可以以某种方式去饱和吗?

谢谢!

小智 1

您还可以将以下内容添加到 xorg 配置中以实现灰度输出:

Section "Screen"
    Identifier "greyscale configuration"
    Defaultdepth 8
    SubSection "Display"
        Depth 8
        Visual "GrayScale"
    EndSubSection
EndSection
Run Code Online (Sandbox Code Playgroud)

这可能有效,具体取决于您的视频驱动程序。