Burnmark.sh
From VDR Wiki
This script marks a recording for the burn-plugin by placing the file burnmark.vdr into the recordings directory.
#!/bin/sh
#
# burnmark.sh - v.0.2
#
# add this lines to your reccmds.conf:
# folgende zeilen in die reccmds.conf eintragen:
#
# Mark for DVD-Writer : /usr/local/bin/burnmark.sh -add
# Delete Mark : /usr/local/bin/burnmark.sh -del
#
# history
# --------
#
# 20041206,randy: added osd text for deletions
#
case "${1}" in
-add)
touch "${2}/burnmark.vdr"
if grep -qs "^OSDLanguage = 1" /etc/vdr/setup.conf ; then
echo "Die Aufzeichnung wurde markiert..."
echo ""
echo "Bitte wechseln Sie nun in das MenĂ¼ DVD-Brenner, oder markieren Sie weitere Aufnahme."
else
echo "The recording was marked..."
echo ""
echo "Please change now into the DVD burner menu, or mark further recordings."
fi
;;
-del)
rm -f "${2}/burnmark.vdr"
if grep -qs "^OSDLanguage = 1" /etc/vdr/setup.conf ; then
echo "Die Aufzeichnung wurde aus der Warteschlange entfernt."
echo ""
else
echo "The recording was removed from the queue."
echo ""
fi
;;
esac


