I am using fluxbox on fedora core 6 and have a myth-load script in the startup of fluxbox.<br><br>I know i can create a script that will restart or start the FE from a button on the remote but i dont really like that idea because what if i accidently hit the wront button and kill myth! BOO!
<br><br>here is what i have in my script now...<br>[myth@Mitchell_mc .mythtv]$ cat myth-load<br>#!/bin/bash<br><br># Only do this stuff if we're on the main display<br># (i.e., don't do this in a vnc session)<br>if [ `echo $DISPLAY | grep -c ":0"` -ge 1 ]
<br>then<br> # Launch irexec for myth power button stop/start<br> irexec &<br> # Launch myth frontend<br> mythfrontend &<br> # Disable dynamic power management (screen blanking)<br> /usr/bin/xset -dpms
<br> # Disable screen saver<br> /usr/bin/xset s off<br>fi<br>exit<br><br><br>Thanks,<br>Mitchell<br><br><br><div><span class="gmail_quote">On 3/27/07, <b class="gmail_sendername">Cole Brodine</b> <<a href="mailto:cbrodine@gmail.com">
cbrodine@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">There's some good options listed for Autologin on the MythTV Wiki. (
<a href="http://www.mythtv.org/wiki/index.php/Frontend_Auto_Login" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.mythtv.org/wiki/index.php/Frontend_Auto_Login</a>)<br><br>I use Option 1 with no window manager on one of my frontends. When Mythfrontend crashes, it automatically restarts X and loads a new Mythfrontend windows up.
<br><br>Hope that helps!<br><br>Regards,<br><span class="sg"><br>Cole Brodine<br>
</span><br>_______________________________________________<br>mythtv-users mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users" target="_blank">
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br><br></blockquote></div><br>