<br><br><div class="gmail_quote">On Sat, Apr 5, 2008 at 6:41 AM, Christopher Brüning <<a href="mailto:moonkuh@gmail.com">moonkuh@gmail.com</a>> 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'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're on the main display<br># (i.e., don't do this in a vnc session)<br>
<br><br>if [ `echo $DISPLAY | grep -c ":0"` -ge 1 ]<br>then<br> DISPLAY=:0.1 # set to secont display<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> # Start MythTranscode Deamon<br> mtd &<br>
fi<br>exit<br>[myth@mythtv<br><br>Mitchell<br></div></div><br>