问题描述
即使我将笔记本电脑的屏幕设置为最低亮度,它在晚上的屏幕也太亮。我知道它可以调光,因为如果我将其闲置,Windows会使其进一步变暗。但是,我不知道如何在Ubuntu上将其调低到最小。有办法吗?
我看过this问题,但它是在谈论Windows。
最佳方法
以下是专门针对低于最低设置屏幕亮度的链接:
Decrease Backlight Below Minimum – Ask Ubuntu
Open Terminal
Enter the following command:
cat /sys/class/backlight/intel_backlight/brightness
Write down the resulting value (12421 in my case)
Divide value by 6 and write it down (2070 in my case)
Enter the following in the terminal, replacing 2070 with your value:
sudo su -c "echo 2070 >/sys/class/backlight/intel_backlight/brightness"
Close Terminal
For future usage of the last command, open Terminal, press Ctrl and R together, start typing
brightness
. When the last command appears, just press Enter.It works for me on a Samsung NC110 with Ubuntu 12.04.
次佳方法
您还可以使用“ xgamma -gamma 0.5”命令来降低RGB颜色的强度。通过使用命令”man xgamma”查看xgamma用法。对于我的英特尔显示器,伽玛亮度从0到10(包括十进制值)变化。