当前位置: 首页>>技术教程>>正文


屏幕变暗超过Ubuntu的最小值

, ,

问题描述

即使我将笔记本电脑的屏幕设置为最低亮度,它在晚上的屏幕也太亮。我知道它可以调光,因为如果我将其闲置,Windows会使其进一步变暗。但是,我不知道如何在Ubuntu上将其调低到最小。有办法吗?

我看过this问题,但它是在谈论Windows。

最佳方法

以下是专门针对低于最低设置屏幕亮度的链接:

Decrease Backlight Below Minimum – Ask Ubuntu

  1. Open Terminal

  2. Enter the following command:

    cat /sys/class/backlight/intel_backlight/brightness 
  3. Write down the resulting value (12421 in my case)

  4. Divide value by 6 and write it down (2070 in my case)

  5. Enter the following in the terminal, replacing 2070 with your value:

    sudo su -c "echo 2070 >/sys/class/backlight/intel_backlight/brightness" 
  6. Close Terminal

  7. 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(包括十进制值)变化。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/8331.html,未经允许,请勿转载。