From e5f1bbba2be64cff04cc0bf7d2224c8a50a1c6dc Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Wed, 31 Aug 2022 21:20:40 +0530 Subject: setting alacritty scaling to 1.5 so it looks similar on both monitors --- .scripts/audio_dl.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 .scripts/audio_dl.sh (limited to '.scripts/audio_dl.sh') diff --git a/.scripts/audio_dl.sh b/.scripts/audio_dl.sh new file mode 100755 index 0000000..8e6c9eb --- /dev/null +++ b/.scripts/audio_dl.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +FILE=$@ +LINES=$(cat $FILE) + +counter=1 +for line in $LINES; do + youtube-dl -x --audio-format mp3 "https://www.youtube.com/watch?v=$line" || echo "$line" >> "$FILE""_failed" + counter=$((counter+1)) + tail -n "+$counter" "$FILE" > "$FILE""_remaining" +done +rm "$FILE""_remaining" -- cgit v1.2.3