如何在14.04中禁用屏幕变暗?


11

当我闲置4-5分钟后,屏幕会自动变暗。当我看电影时,这太无聊了。如何禁用这个东西?


我只想补充一点,在Google Chrome浏览器中没有这种问题,因此显然没有必要安装某些软件来防止这种情况。
谢尔盖·乔波夫

Answers:


9

您可以安装Caffeine来执行此操作:

sudo add-apt-repository ppa:caffeine-developers/ppa
sudo apt-get update
sudo apt-get install caffeine

然后在您的Dash中搜索咖啡因以启动它。它应该在重新启动后自动启动。

现在,咖啡因将在屏幕右上方显示一个指示器。单击它启用咖啡因(您的PC现在不会进入睡眠状态)。再次单击以禁用它,Ubuntu将遵循其通常的睡眠模式。


您也可以根据需要永久禁用睡眠。

  1. 打开 System Settings
  2. 点击 Brightness & Lock
  3. Turn screen off when inactive for选择Never

无法在我的ideapad上工作...
Oz123 2014年

我已经使用系统设置完成了第二个选择,但对我来说不起作用。
sawa

5
  1. 系统工具->首选项->电源
  2. 在提示消息中单击“屏幕亮度”:

提示:屏幕亮度会影响所用电量

  1. 为“不活动时关闭屏幕:”选择“从不”

1
#!/bin/bash

# Cleanup any bad state we left behind if the user exited while flash was
# running
gconftool-2 -s /apps/gnome-screensaver/idle_activation_enabled --type bool true

we_turned_it_off=0

while true; do
    sleep 60
    flash_on=0

    for pid in `pgrep firefox` ; do
        if grep libflashplayer /proc/$pid/maps > /dev/null ; then
            flash_on=1
        fi

        ss_on=`gconftool-2 -g /apps/gnome-screensaver/idle_activation_enabled`

        if [ "$flash_on" = "1" ] && [ "$ss_on" = "true" ]; then
            gconftool-2 -s /apps/gnome-screensaver/idle_activation_enabled \
                --type bool false
            we_turned_it_off=1
        elif [ "$flash_on" = "0" ] && [ "$ss_on" = "false" ] \
                && [ "$we_turned_it_off" = "1" ]; then
            gconftool-2 -s /apps/gnome-screensaver/idle_activation_enabled \
                --type bool true
            we_turned_it_off=0
        fi

    done
done    

将其另存为.sh文件,并将此文件添加到会话和启动中

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.