diff options
author | Case Duckworth | 2022-07-28 21:20:37 -0500 |
---|---|---|
committer | Case Duckworth | 2022-07-28 21:20:37 -0500 |
commit | 1548481255af8a5e136fe76944dac82b2f0cb93a (patch) | |
tree | 38c3410acad901435aa21bed2ec0ab696e216b5b | |
parent | Break _radish_not_running into its own function (diff) | |
download | radish-main.tar.gz radish-main.zip |
-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:*) |