summaryrefslogtreecommitdiff
blob: 6af48aed41d1f29671bbdcce631da50b4b398097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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
}