blob: da5b025657948396c6ef863a4d9ab2a4951eba5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-radio/files/rc-addon.sh-0.2.0,v 1.1 2007/01/04 17:06:34 zzam Exp $
#
# rc-addon plugin-startup-skript for vdr-radio
#
# This sript is called by gentoo-vdr-scripts on start of VDR
# Set default DIR to the background picture
RADIO_BACKGROUND_DIR=/usr/share/vdr/radio
RADIO_TMP_DIR=/var/cache/vdr-radio
plugin_pre_vdr_start() {
add_plugin_param "-f ${RADIO_BACKGROUND_DIR}"
add_plugin_param "-d ${RADIO_TMP_DIR}"
}
|