summaryrefslogtreecommitdiffstats
path: root/modules/streams
diff options
context:
space:
mode:
Diffstat (limited to 'modules/streams')
-rw-r--r--modules/streams/Makefile10
-rw-r--r--modules/streams/README10
-rwxr-xr-xmodules/streams/deepmix27
-rwxr-xr-xmodules/streams/groove29
-rwxr-xr-xmodules/streams/radiotux29
5 files changed, 0 insertions, 105 deletions
diff --git a/modules/streams/Makefile b/modules/streams/Makefile
deleted file mode 100644
index 9f3076c0..00000000
--- a/modules/streams/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-INITD = /etc/init.d/
-streams = groove deepmix radiotux
-.PHONY: all
-.PHONY: $(streams)
-
-all: $(streams)
- update-rc.d groove defaults
-
-$(streams):
- cp $@ $(INITD)$@
diff --git a/modules/streams/README b/modules/streams/README
deleted file mode 100644
index 82300c24..00000000
--- a/modules/streams/README
+++ /dev/null
@@ -1,10 +0,0 @@
-streams done right
-
-deepmix,groovesalad and radiotux are now init.d scrips which can be
-started and stopped.
-
-scripts are dumped into /etc/init.d and groovesalad will be set as
-default via update-rc.d
-
-mplayer will be started in a tmux session either by creating a new
-session or starting a new window inside the first existing one
diff --git a/modules/streams/deepmix b/modules/streams/deepmix
deleted file mode 100755
index 8b13bed6..00000000
--- a/modules/streams/deepmix
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/bash
-set -euf
-CMD="while :; do mplayer http://deepmix.ru/deepmix128.pls; done"
-function start() {
- stop
- tmux list-sessions &&
- tmux new-window "$CMD" ||
- tmux new-session "$CMD"
-}
-function stop() {
- pkill mplayer || :
-}
-case "$1" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart)
- stop
- start
- ;;
- *)
- echo "aidsballs"
- ;;
-esac
diff --git a/modules/streams/groove b/modules/streams/groove
deleted file mode 100755
index 2d4a3e28..00000000
--- a/modules/streams/groove
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /bin/bash
-set -euf
-function stop()
-{
- pkill mplayer || true
-}
-
-CMD="while true; do exec mplayer http://somafm.com/groovesalad.pls; sleep 1;done"
-case "$1" in
- start)
- stop
- if tmux list-sessions;
- then
- tmux new-window "$CMD" &
- else
- tmux new-session "$CMD" &
- fi
- ;;
- stop)
- stop
- ;;
- restart)
- stop
- start
- ;;
- *)
- echo "aidsballs"
- ;;
-esac
diff --git a/modules/streams/radiotux b/modules/streams/radiotux
deleted file mode 100755
index 9d671493..00000000
--- a/modules/streams/radiotux
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /bin/bash
-set -euf
-function stop()
-{
- pkill mplayer || true
-}
-
-CMD="while true; do exec mplayer http://streams.xenim.de/radiotux.ogg; sleep 1;done"
-case "$1" in
- start)
- stop
- if tmux list-sessions;
- then
- tmux new-window "$CMD" &
- else
- tmux new-session "$CMD" &
- fi
- ;;
- stop)
- stop
- ;;
- restart)
- stop
- start
- ;;
- *)
- echo "aidsballs"
- ;;
-esac