diff options
author | makefu <github@syntax-fehler.de> | 2011-08-03 23:55:36 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2011-08-03 23:55:36 +0200 |
commit | 7c4cea71203f409a2c286728dc8bd8b8c104443d (patch) | |
tree | 893a1b2fccd39ff184f32a547730c20b50ea3ff1 /streams/groove | |
parent | 9e6e96f9f21bf55897f01665dfae7e611781c694 (diff) |
finished protype of streams
streams/streams: runs given streams by name with zsh start|stop|restart|status|list [streamname]
the Makefile has yet to be fixed for that one
streams/groove: uses streams to start|stop|restart groovesalad stream
Diffstat (limited to 'streams/groove')
-rwxr-xr-x | streams/groove | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/streams/groove b/streams/groove index 935a16d9..8c2faddd 100755 --- a/streams/groove +++ b/streams/groove @@ -1,25 +1,14 @@ #! /bin/bash set -euf -CMD="exec mplayer http://somafm.com/groovesalad.pls" -function start() { - stop - tmux start-server - tmux new-session -d "$CMD" -} -function stop() -{ - pkill mplayer || : -} - +STR=$PWD/streams case "$1" in start) - start + $STR start groove stop) - stop + $STR stop ;; restart) - stop - start + $STR restart groove ;; *) echo "aidsballs" |