File: reccmds.custom.conf

package info (click to toggle)
vdr 2.4.1-4.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,404 kB
  • sloc: ansic: 60,322; perl: 966; makefile: 703; sh: 637; python: 86
file content (28 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# This is an example file for defining external commands, that will be 
# accessible as commands at the recordings list.
# The commands will be executed under the same user id that vdr is running 
# with, so take care if your are running vdr as root!
# 
# The format of a command entry is:  <title> : <command>
# <title> is the menu text shown on the OSD and <command> is the command to
# be executed. Everything that <command> writes to stdout will be displayed
# on the OSD. Also the name of the selected recording will be passed 
# in single quotes as the first parameter to the command, e.g.:
#
# Show me the recording name: echo 
#
# If you uncomment the line above and restart vdr, you will have a new 
# recordings command menu entry, called "Show me the recording name", that 
# will simply show you the recording name :-)
#
# You can divide your commands into submenus, e.g.:
#
# main menu node {
#   sub menu entry 1     : do_something.sh
#   sub menu entry 2     : do_something_else.sh
#   sub menu node {
#     sub-sub menu entry : do_whatever_you_want.sh
#   }
# }
#