Oh yea, I forgot about that one, here it is:<br><br>#!/bin/bash<br><br>pids=`pidof mythfrontend`<br>if [ &quot;$pids&quot; == &quot;&quot; ]; then<br>        echo &quot;Starting mythfrontend&quot;<br>        /usr/local/bin/mythfrontend  -l /var/log/mythtv/mythfrontend.log
<br>        renice -10 `pidof mythfrontend`<br>else<br>        echo &quot;already running&quot;<br>fi<br><br>I really don't know why I have them seperate...<br><br>