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
This commit is contained in:
Marco D'Agostini 2020-09-17 15:59:02 -05:00
parent 24011d1e6b
commit 86d3dd4a17

View File

@ -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 &&