mrrudy / proxmoxHelper

25 stars 13 forks source link

power saving/sleep/blank screen #2

Open untitledlt opened 1 year ago

untitledlt commented 1 year ago

After some time screen goes blank and I can't bring it back with Yatse (Kodi remote for Android). I can bring it back with physical keyboard though.

In Kodi settings blanc screen is disabled. Not sure what causes this and how can I disable that. Any ideas?

mrrudy commented 1 year ago

hi, I don't know how Yatse is talking to X but you can always just disable turning off the monitor. If you decide to do this your monitor won't go to sleep after any time of inactivity.

cat <<EOF >/etc/X11/xorg.conf.d/20-screen-standby.conf
Section "Monitor"
        Identifier   "Monitor0"
        Option          "DPMS"
EndSection

Section "ServerLayout"
    Identifier "ServerLayout0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime"     "0"
    Option "BlankTime"   "0"
EndSection

EOF

Restart Xorg.

alfureu commented 4 months ago

for some reason this does not work for me, any other suggestions?