diff options
-rw-r--r-- | TODO.txt | 4 | ||||
-rwxr-xr-x | radish | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/TODO.txt b/TODO.txt new file mode 100644 index 0000000..063853c --- /dev/null +++ b/TODO.txt | |||
@@ -0,0 +1,4 @@ | |||
1 | - ability to add/delete/change stations individually | ||
2 | - possibly change to a subcommand layout (radish play, radish stop, etc.) | ||
3 | - rewrite possibly? in .. scheme? | ||
4 | - add a pause option | ||
diff --git a/radish b/radish index 0883946..3cc4eb7 100755 --- a/radish +++ b/radish | |||
@@ -195,7 +195,8 @@ radish_play() { | |||
195 | case "${1:-}" in | 195 | case "${1:-}" in |
196 | https:* | http:*) | 196 | https:* | http:*) |
197 | _radish_kill_impl || : | 197 | _radish_kill_impl || : |
198 | echo >&2 "Streaming $1..." | 198 | name="$(grep "$1" "$RADISH_STATION_FILE" | cut -f2)" |
199 | echo >&2 "Streaming ${name:-$1}..." | ||
199 | radish_play_web "$1" | 200 | radish_play_web "$1" |
200 | ;; | 201 | ;; |
201 | noise:*) | 202 | noise:*) |