我最近安装了 12.04,但在 11.10 中遇到了同样的问题。当我观看视频时,VLC 会禁止关闭显示器。在较旧的(Unity 之前的)Ubuntu 版本中,这只会在视频播放时生效。现在,无论视频是否正在播放,VLC 都会禁用显示器的关闭。
有办法修复这个问题吗?或者一个不那么奇怪的外壳?或者一个不会出现这种行为的视频播放器?
答案1
1.
检查,
Tools => Preferences => Show All => Video => Disable screensaver
如果您想启用屏幕保护程序,请取消选中它。
Tools => Preferences => Show All => Advanced => Inhibit the power management daemon during playback
取消选中此项可在 vlc 播放时关闭显示器。
2.
尝试此脚本以获取相应的选项
#!/bin/bash
xset -dpms #do not allow turn off
xset s off #do not allow screen saver
xset dpms #Allow turn off if not work then try -dpms
xset s on #Allow screen saver
exit