diff options
Diffstat (limited to 'streams/groove')
| -rwxr-xr-x | streams/groove | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/streams/groove b/streams/groove new file mode 100755 index 00000000..2d4a3e28 --- /dev/null +++ b/streams/groove @@ -0,0 +1,29 @@ +#! /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 | 
