From 86d3dd4a17b1efdeaa1cec46a606c8d0da3b1090 Mon Sep 17 00:00:00 2001 From: Marco D'Agostini Date: Thu, 17 Sep 2020 15:59:02 -0500 Subject: [PATCH] youtube-dl: Added feedback message after selecting video or audio Previously there was no feedback at all after choosing an option. Didn't even know if it was pressed correctly --- install youtube-dl in android.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install youtube-dl in android.md b/install youtube-dl in android.md index bdc6fa7..95dd914 100644 --- a/install youtube-dl in android.md +++ b/install youtube-dl in android.md @@ -48,9 +48,11 @@ Click **Share**, select **Termux**, choose video or audio, and that's it!, it wi case $CHOICE in Video) + echo "Downloading video from $URL" youtube-dl $URL ;; Audio) + echo "Downloading audio from $URL" youtube-dl -x $URL ;; esac' > ~/bin/termux-url-opener &&