Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 18587  / 3 Years ago, mon, july 26, 2021, 8:33:28

When I play a movie on VLC the screen turns off after 10 minutes. I used to run Ubuntu and this didn't happen there.


More From » 11.10

 Answers
2

There are couple of settings that you should check in VLC:

1) Tools --> Preferences --> Show All --> Video --> Disable screensaver

2) Tools --> Preferences --> Show All --> Advanced --> Inhibit the power management daemon during playback

If both of this options are checked, you could try a simple wrapper script which disables the monitor modes that will power down, standby or blank the screen prior to calling VLC:



#!/bin/bash

#Disable modes
/usr/bin/xset -dpms &
/usr/bin/xset s off &

#Open VLC
/usr/bin/vlc "$@"

#Re-enable modes
/usr/bin/xset dpms
/usr/bin/xset s on
exit

[#40495] Wednesday, July 28, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
antebrow

Total Points: 291
Total Questions: 135
Total Answers: 117

Location: New Caledonia
Member since Thu, Mar 23, 2023
1 Year ago
antebrow questions
;