morche
da mich gestört hat wen man in xbmc das LCD aktiviert hat die anzeige zwischen vdr und xbmc hin und hergeschaltet hat habe ich eine Lösung gesucht .
das ganze ist eigentlich simpel .
in /etc/init/xbmc.conf
wird die fernbetinung den vdr oder xbmc übergeben .
pre-start script
vdr-dbus-send /Remote remote.Disable ||:
if [ ! -z $STANDALONE ] ; then
touch /tmp/.standalone
fi
end script
post-stop script
/bin/rm -f /tmp/.standalone
vdr-dbus-send /Remote remote.Enable ||:
/sbin/initctl emit --no-wait vdr-frontend-restart
end script
entern wir das jetzt so ab
pre-start script
vdr-dbus-send /Remote remote.Disable ||:
vdr-dbus-send /Plugins/lcdproc plugin.SVDRPCommand string:'off' ||:
if [ ! -z $STANDALONE ] ; then
touch /tmp/.standalone
fi
end script
post-stop script
/bin/rm -f /tmp/.standalone
vdr-dbus-send /Remote remote.Enable ||:
vdr-dbus-send /Plugins/lcdproc plugin.SVDRPCommand string:'on' ||:
/sbin/initctl emit --no-wait vdr-frontend-restart
end script
wird auch das lcd bei einen Wechsel vdr/xbmc umgeschaltet
mfg det