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