I have switched off energy saving features with the mate applet, configured to run a blank screensaver after 2 billion seconds of delay, in dconf editor disabled the screensaver, screen blanking and monitor dpms features for AC, UPS & battery mode (I have a desktop without ups). Switched off dpms features of the monitor in the on-screen menue, and also in pc bios.
After that I switched off the screensaver service with boot up manager, run terminal commands like 'xset -dpms s 0 s noblank s noexpose
' , 'xset dpms 0 0 0 s 0 0 && xset -dpms' and the screen went blank after 10 minutes.
As a temporary solution, I have this script:
Code: Select all
#!/bin/sh
while [ 1 ]; do
sleep 60
xte"key Num_Lock"
done
It works. Tested for 17 minutes. But i would prefer the normal way to switch off dpms features while watching movies. I will ask it on the mate desktop forum.
** Update: i added a menu icon to start the script with 'roxterm -e /home/common/no_blank/noblank.sh'. So it runs in a terminal, and i can"switch on" dpms features by closing the terminal.