diff options
author | Udo Richter <udo_richter@gmx.de> | 2007-02-18 00:00:00 +0100 |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2013-10-01 17:15:05 +0200 |
commit | 6d08550184e9d6d801d67882a827da46fadcdb66 (patch) | |
tree | f73739a865dbb707a73ce762b8f4d7b90d7eec9e /runvdr.conf.example | |
parent | 227b5c30f17596b06ca538eed10631e8ff7c5a66 (diff) | |
download | runvdr-extreme-6d08550184e9d6d801d67882a827da46fadcdb66.tar.gz runvdr-extreme-6d08550184e9d6d801d67882a827da46fadcdb66.tar.bz2 |
Version 0.2.0v0.2.0
* New: Pass DVBLOAD and DVBUNLOAD to eval, allows to execute more than one command, thanks to Thomas Büschgens
* New: Load ~/.runvdr.conf as default, load /etc/runvdr.conf as fallback
* New: INCLUDE directive to load other config file
* New: -P "-plugin" drops plugin from plugin load list. Same for -D.
* Change: LANGUAGE now sets LC_ALL, not LANG.
Diffstat (limited to 'runvdr.conf.example')
-rw-r--r-- | runvdr.conf.example | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/runvdr.conf.example b/runvdr.conf.example index b06572a..85dc41b 100644 --- a/runvdr.conf.example +++ b/runvdr.conf.example @@ -3,10 +3,19 @@ # Sample configuration file for the runvdr vdr-launcher script. # # by Udo Richter <udo_richter(a)gmx.de> -# http://www.richter-udo.de/vdr/scripts.html#runvdr +# http://www.udo-richter.de/vdr/scripts.html#runvdr # # + +# Include other configuration file for defaults +# Must be first, or will override all previous settings +# You may want to use this in ~/.runvdr.conf if you also want to load +# /etc/runvdr.conf. DO NOT create infinite loops with this! +# +# INCLUDE /etc/runvdr.conf + + ##### ------------------------- ##### Common config options ##### ------------------------- @@ -17,11 +26,11 @@ VDRPRG="/usr/local/bin/vdr" # Command to load the DVB drivers # DVBLOAD will be launched before VDR starts and whenever the drivers # need to be reloaded. -DVBLOAD="" +DVBLOAD='' # Command to unload the DVB drivers # DVBUNLOAD will be launched whenever the drivers need to be reloaded. -DVBUNLOAD="" +DVBUNLOAD='' # Use VIDEODIR as video directory. The default is /video. VIDEODIR="/video" @@ -46,7 +55,7 @@ CONFIGDIR="/video" # which would load a plugin named "hello", giving it the three # command line options "-b", "-a" and "A B C" # -# Note: Using the command line option --plugin requires additional +# Note: Using the command line option --plugin and -P requires additional # quoting. The corresponding command line would be: # # runvdr --plugin "hello -b -a \"A B C\"" @@ -137,6 +146,7 @@ RCU= VFAT= # Store PID of runvdr into a file? +# RUNVDRPID=~/.runvdr.pid RUNVDRPID=/var/run/runvdr.pid # Set the controlling terminal. For example, /dev/tty8 |