如何禁用 Raspberry Pi 上的屏幕消隐

如何禁用 Raspberry Pi 上的屏幕消隐

我正在运行 Raspbian,并将其用作零售中心电视的显示设备。我在启动时使用 .profile 中的以下行运行 Chromium:

xinit /usr/bin/chromium --kiosk --incognito www.mysite.com

...但是,似乎没有一种禁用屏幕消隐的解决方案有效(尽管如果我在 Raspbian GUI 中,它们确实有效)。显示屏不消隐非常重要(正如您所想象的)。

有人对此有解决方案吗?

我尝试了以下方法:

按照本例设置 xinitrc 文件https://raspberrypi.stackexchange.com/questions/2059/disable-screen-blanking-in-x-windows-on-raspbian

在 xserverrc 中设置 exec /usr/bin/X -s 0 dpms -nolisten tcp "$@"

在 /etc/kbd/config 中设置空白超时

使用以下行设置 /etc/lightdm/lightdm.conf:xser​​ver-command=X -s 0 dpms

以上均无效

我注意到一个可能的解决方案,即安装 xscreensaver 然后禁用它,但我不知道如何让它在启动时运行。

答案1

你可以尝试一下解决方案
评论这行:

@xscreensaver -no-splash

并添加以下几行:

@xset s off
@xset -dpms
@xset s noblank

答案2

要阻止整个系统的屏幕变黑,只需/root/cmdline.txt添加:

`consoleblank=0`

之后console=tty1重新启动。

相关内容