diff options
Diffstat (limited to 'util/music-dl')
-rwxr-xr-x | util/music-dl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/util/music-dl b/util/music-dl new file mode 100755 index 0000000..21d0358 --- /dev/null +++ b/util/music-dl @@ -0,0 +1,14 @@ +#!/bin/sh +# Grab the audio track via yt-dlp, and place in the music folder. + +musicdir="/var/lib/mpd/music/yt-dlp" +record="$musicdir/dlrecord" + +mkdir -p "$musicdir" + +notify-send "Downloading..." "Downloading $1"& +yt-dlp "$1" --format bestaudio -P "$musicdir" -o "%(title)s.%(ext)s" +echo "$1" >> "$record" +notify-send "Song downloaded!" "$1 is now downloaded." & + +mpd update |