summaryrefslogtreecommitdiffstats
path: root/streams/groove
diff options
context:
space:
mode:
Diffstat (limited to 'streams/groove')
-rwxr-xr-xstreams/groove19
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"