<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<br>
<br>
<div class="moz-cite-prefix">On 10/6/2015 11:20 AM, Thomas
Pontoppidan wrote:<br>
</div>
<blockquote
cite="mid:CAMi+zyteDK9gWv_CHnhfTxNmBV0mS-1AqmBbN4p7EiS9CY93Yw@mail.gmail.com"
type="cite">
<div dir="ltr">
<div class="gmail_extra">
<div class="gmail_quote">2015-02-28 18:33 GMT+01:00 Scott
Lipcon <span dir="ltr"><<a moz-do-not-send="true"
href="mailto:slipcon@gmail.com" target="_blank">slipcon@gmail.com</a>></span>:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px
0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid">
<div dir="ltr">I spent the most time trying to get it to
not lose its mind whenever the TV was off - I had to
disable various screensaving/power saving options, DPMS,
etc - either HDMI video wouldn't come back, or HDMI
audio, or both - but eventually I got that set right,
and it seems to be working well.
<div><br>
</div>
</div>
</blockquote>
<div>I know this is an old thread but how exactly did you
solve this? I have tried different versions with scripts
etc. but so far I haven't found a really good solution.</div>
<div>My Liva is on 24/7 so I have no concerns disabling powe
saving or whatever.</div>
<div><br>
</div>
<div>Thanks,</div>
<div>Thomas</div>
<br>
</div>
</div>
</div>
</blockquote>
<br>
Don't know if screen blanking could be affecting things for you. On
my Liva's Fedora 21 setup in /etc/rc.d/rc.local I have:<br>
<br>
/usr/bin/setterm -blank 0 -powerdown 0<br>
<br>
But I don't think X has started yet so this may be pointless. Then I
auto-login to the mythtv user whose .bash_profile looks like:<br>
<br>
#See nvidia readme:<br>
#export __GL_SYNC_TO_VBLANK=1<br>
/usr/bin/setterm -blank 0 -powerdown 0<br>
<br>
if [ -z "$DISPLAY" ] && [ $(tty) == /dev/tty8 ]; then<br>
while [ 1 == 1 ]<br>
do<br>
startx<br>
sleep 4<br>
/usr/bin/xset -display :0 s noblank<br>
/usr/bin/xset -display :0 s off<br>
/usr/bin/xset -display :0 -dpms<br>
done<br>
fi<br>
<br>
Okay, leftover cruft from a copied and unrelated Nvidia setup. So I
*think* the xset stuff is unneeded. I don't think it gets called
until I kill X or exit mythfrontend making it pointless. But it's
not harming anything either.<br>
<br>
</body>
</html>