blob: bbc39dd30c00b5ba183524922cb203ea9bced2b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
plugin_pre_vdr_start() {
if [ -n "${TVGUIDE_EPGIMAGESPATH}" ]; then
add_plugin_param "-e ${TVGUIDE_EPGIMAGESPATH}"
fi
if [ -n "${TVGUIDE_ICONSPATH}" ]; then
add_plugin_param "-i ${TVGUIDE_ICONSPATH}"
fi
if [ -n "${TVGUIDE_LOGOPATH}" ]; then
add_plugin_param "-l ${TVGUIDE_LOGOPATH}"
fi
}
|