summaryrefslogtreecommitdiff
path: root/script/uactivity/activity/-20-switch_tv
diff options
context:
space:
mode:
Diffstat (limited to 'script/uactivity/activity/-20-switch_tv')
-rw-r--r--script/uactivity/activity/-20-switch_tv38
1 files changed, 0 insertions, 38 deletions
diff --git a/script/uactivity/activity/-20-switch_tv b/script/uactivity/activity/-20-switch_tv
deleted file mode 100644
index c9bbf57..0000000
--- a/script/uactivity/activity/-20-switch_tv
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-switch_tv(){
- if [ "${1}" = "on" ]; then
- # yaUSBir sometimes ignore the first command, send an existing dummy ir code
- irsend -d /var/run/lirc/ya_usbir SEND_ONCE TV_DUMMY dummy
- sleep 0.5
- irsend -d /var/run/lirc/ya_usbir SEND_ONCE TV_REMOTE on
- else
- # yaUSBir sometimes ignore the first command, send an existing dummy ir code
- irsend -d /var/run/lirc/ya_usbir SEND_ONCE TV_DUMMY dummy
- sleep 0.5
- irsend -d /var/run/lirc/ya_usbir SEND_ONCE TV_REMOTE off
- fi
-}
-
-
-
-case "${1}" in
- startup)
- true
- ;;
- started)
- [ "${2}" = "true" ] && switch_tv on
- ;;
- shutdown)
- switch_tv off
- ;;
- running)
- if [ "${2}" = "true" ]; then
- switch_tv on
- else
- switch_tv off
- fi
- ;;
-esac
-
-exit 0