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

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
}