summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeine_Ahnung <dirk-vdr@gmx.de>2013-02-04 14:49:14 +0100
committerKeine_Ahnung <dirk-vdr@gmx.de>2013-02-04 14:49:14 +0100
commit2be7e65c7b15775993eeb3198b8c2404b5b489dd (patch)
tree81d2c7e6539980609b4614914f7e7201eb22125f
parent055dd9f501c01f49350f3288fdf1ef6af8dc7a10 (diff)
downloadvdr-plugin-uactivity-2be7e65c7b15775993eeb3198b8c2404b5b489dd.tar.gz
vdr-plugin-uactivity-2be7e65c7b15775993eeb3198b8c2404b5b489dd.tar.bz2
small fixes
-rw-r--r--README2
-rw-r--r--script/uactivity/key/-20-toggle_demo5
-rw-r--r--script/vdr-uactivity8
3 files changed, 9 insertions, 6 deletions
diff --git a/README b/README
index 6166815..73b9ab5 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
This is a "plugin" for the Video Disk Recorder (VDR).
-Written by: Dirk Heiser <email@host.dom>
+Written by: Dirk Heiser <dirk-vdr@gmx.de>
Project's homepage: http://projects.vdr-developer.org/projects/plg-uactivity
diff --git a/script/uactivity/key/-20-toggle_demo b/script/uactivity/key/-20-toggle_demo
index a3752fd..3ec3cfb 100644
--- a/script/uactivity/key/-20-toggle_demo
+++ b/script/uactivity/key/-20-toggle_demo
@@ -1,12 +1,14 @@
#!/bin/sh
+# do not use names starting with [0-9][0-9] for data files
FLAG="${4}/key/flag.$(basename ${0})"
case "${1}" in
startup)
# create flag directory (using cache directory)
mkdir -p "${4}/key/"
- # delete flag
+ # delete flag (may leftover from previus vdr crash)
+ # kepp the flag if toggle state should be keep over vdr sessions
rm -f "${FLAG}"
;;
running)
@@ -19,7 +21,6 @@ case "${1}" in
else
# here we do our "on" action
logger -t "uactivity [key/$(basename ${0})]" "$(basename ${0}) on"
- # do not use names starting with [0-9][0-9] for data files
touch "${FLAG}"
fi
fi
diff --git a/script/vdr-uactivity b/script/vdr-uactivity
index 647ca76..c758939 100644
--- a/script/vdr-uactivity
+++ b/script/vdr-uactivity
@@ -38,9 +38,11 @@ case "${PARAM_REASON}" in
commandline="${PARAM_ORGIN} ${PARAM_VALUE}"
;;
key)
- [ "${PARAM_VALUE}" != "_Setup" ] \
- && commandline="${PARAM_ORGIN} ${PARAM_VALUE}" \
- || commandline="${PARAM_ORGIN} ''"
+ if [ "${PARAM_VALUE}" != "_Setup" ]; then
+ commandline="${PARAM_ORGIN} ${PARAM_VALUE}"
+ else
+ commandline="${PARAM_ORGIN} ''"
+ fi
;;
watchdog)
commandline="${PARAM_ORGIN} ${PARAM_VALUE}"