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

plugin_pre_vdr_start() {
	if [ -n "${SKINNOPACITY_EPGIMAGESPATH}" ]; then
		add_plugin_param "-e ${SKINNOPACITY_EPGIMAGESPATH}"
	fi

	if [ -n "${SKINNOPACITY_ICONSPATH}" ]; then
		add_plugin_param "-i ${SKINNOPACITY_ICONSPATH}"
	fi

	if [ -n "${SKINNOPACITY_LOGOPATH}" ]; then
		add_plugin_param "-l ${SKINNOPACITY_LOGOPATH}"
	fi
}