From ac196469e19255a6fad32c321f96f20aa0e55be1 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 26 May 2011 00:47:04 +0200 Subject: 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 --- modules/streams/groove | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) (limited to 'modules/streams/groove') diff --git a/modules/streams/groove b/modules/streams/groove index 9b721adf..2d4a3e28 100755 --- a/modules/streams/groove +++ b/modules/streams/groove @@ -1,4 +1,29 @@ -#! /bin/sh +#! /bin/bash set -euf -pkill mplayer || true -exec mplayer http://somafm.com/groovesalad.pls +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 -- cgit v1.2.3