Ok I have solved this - adding the lcd_redirect command to any init or rc.local script etc doesn't work because it is loaded before the LMCE orbiter.
Heres what I did to get it running -
Make a deamon
sudo nano /usr/sbin/lcd
add
#!/bin/bash
#check if the OrbiterGL is already running!
LMCE=`pidof OrbiterGL`
if [ ! -z $LMCE ] ; then
while true ; do
#load lcdproc
/usr/local/sbin/LCDd -c /home/linuxmce/lcdproc/LCDd.conf
#load lcd_redirect
/home/linuxmce/lcd/lcd_redirect 39
sleep 5
done
else
sleep 5
/usr/sbin/lcd
fi
change the lcdproc and lcd_redirect paths to suit you
Then make it executable
chmod 755 /usr/sbin/lcd
And make an init script
sudo nano /etc/init.d/lcd
add>
/usr/bin/lcd
then
update-rc.d lcd defaults
The lcd_redirect will then start with the orbiter. You can have the mythtv lcd client set up to display tv info (when you quit mythtv lcd_redirect will start back up)
Perfec!