From 2ef3182b2f8cb6c10350b34c2d6e74aa6a9c087b Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Tue, 11 Dec 2018 16:12:41 -0500 Subject: [PATCH] queue fix --- .scripts/tools/queueandnotify | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.scripts/tools/queueandnotify b/.scripts/tools/queueandnotify index 083d796..332668f 100755 --- a/.scripts/tools/queueandnotify +++ b/.scripts/tools/queueandnotify @@ -9,8 +9,10 @@ while read -r line; do url="$(echo "$line" | awk '{print $1}')" base="$(basename "$url")" notify-send -i "$PIX/dl.png" "Queuing $base..." - idnum="$(tsp curl -LO "$url" && mv "$base" "$(echo "$base" | sed "s/?\(source\|dest\).*//")")" - tsp -D "$idnum" notify-send -i "$PIX/check.png" "$base done." + idnum="$(tsp curl -LO "$url")" + realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")" + tsp -D "$idnum" mv "$base" "$realname" + tsp -D "$idnum" notify-send -i "$PIX/check.png" "$realname done." done < "$queuefile" echo > "$queuefile"