<br><br><div class="gmail_quote">On Sat, Apr 5, 2008 at 6:41 AM, Christopher Brüning &lt;<a href="mailto:moonkuh@gmail.com">moonkuh@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
i don&#39;t know where it is under mythbuntu, but you can enter this for example<br>/usr/bin/mythfrontend -display :0.1<br>under mythbuntu session or so where you can say which program should start automaticly<br><br></blockquote>
<div><br>I edited my starup script to set the DISPLAY variable.<br><br>[myth@mythtv ~]$ cat .mythtv/myth-load<br>#!/bin/bash<br><br># Only do this stuff if we&#39;re on the main display<br># (i.e., don&#39;t do this in a vnc session)<br>
<br><br>if [ `echo $DISPLAY | grep -c &quot;:0&quot;` -ge 1 ]<br>then<br>&nbsp;&nbsp;&nbsp; DISPLAY=:0.1 # set to secont display<br>&nbsp;&nbsp;&nbsp; # Launch irexec for myth power button stop/start<br>&nbsp;&nbsp;&nbsp; irexec &amp;<br>&nbsp;&nbsp;&nbsp; # Launch myth frontend<br>
&nbsp;&nbsp;&nbsp; mythfrontend &amp;<br>&nbsp;&nbsp;&nbsp; # Disable dynamic power management (screen blanking)<br>&nbsp;&nbsp;&nbsp; #/usr/bin/xset -dpms<br>&nbsp;&nbsp;&nbsp; # Disable screen saver<br>&nbsp;&nbsp;&nbsp; /usr/bin/xset s off<br>&nbsp;&nbsp;&nbsp; # Start MythTranscode Deamon<br>&nbsp;&nbsp;&nbsp; mtd &amp;<br>
fi<br>exit<br>[myth@mythtv<br><br>Mitchell<br></div></div><br>