3

I recently installed 12.04, but I had the same problem in 11.10. When I watch a video, VLC suppresses the monitor being turned off. In older (pre-Unity) Ubuntu versions, this would only be in effect while the video was playing. Now VLC is disabling the turning off of the monitor regardless of if it is playing or not.

Is there a way to fix this? Or a less quirky shell? Or a video player that doesn't exhibit this behaviour?

1 Answers1

2

1.

check for,

Tools => Preferences => Show All => Video => Disable screensaver

enter image description here

if you want to enable screen saver uncheck it.

Tools => Preferences => Show All => Advanced => Inhibit the power management daemon during playback

enter image description here uncheck this to make monitor turn of while playing in vlc.

2.

try this script for respective options

#!/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
Rahul Virpara
  • 11,860