summaryrefslogtreecommitdiffstats
path: root/.scripts
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-12-09 14:30:58 -0500
committerLuke Smith <luke@lukesmith.xyz>2018-12-09 14:30:58 -0500
commit5646b5b2e5153c0b4691299c24eb5d84eba4eea6 (patch)
tree796e9c8a588691d38c18e6617225b76d0839add6 /.scripts
parent8afa2eb59b5b0b2cd237911a81330016c340aa6c (diff)
downloadeibhear-5646b5b2e5153c0b4691299c24eb5d84eba4eea6.tar.gz
eibhear-5646b5b2e5153c0b4691299c24eb5d84eba4eea6.tar.zst
eibhear-5646b5b2e5153c0b4691299c24eb5d84eba4eea6.zip
better queue script
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/tools/queueandnotify13
1 files changed, 5 insertions, 8 deletions
diff --git a/.scripts/tools/queueandnotify b/.scripts/tools/queueandnotify
index d9a43c8..083d796 100755
--- a/.scripts/tools/queueandnotify
+++ b/.scripts/tools/queueandnotify
@@ -1,19 +1,16 @@
#!/bin/sh
-
# Podboat sucks. This script replaces it.
# It reads the newsboat queue, queuing downloads with taskspooler.
-
-dlcmd="curl -LO"
+# It also removes the junk from extentions.
queuefile="$HOME/.local/share/newsboat/queue"
while read -r line; do
[ -z "$line" ] && continue
- url="$(echo $line | awk '{print $1}')"
- base="$(basename $url)"
- note "Queuing $base..." "$PIX/dl.png"
- idnum="$(tsp $dlcmd $url)"
+ 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."
- tsp -D "$idnum" mv "$base" "$(echo $base | sed "s/?dest.*//")"
done < "$queuefile"
echo > "$queuefile"