voidrice/.local/bin/queueandnotify

14 lines
376 B
Text
Raw Normal View History

2019-08-18 16:28:11 +00:00
#!/usr/bin/env sh
2018-12-08 21:01:11 +00:00
# Podboat sucks. This script replaces it.
# It reads the newsboat queue, queuing downloads with taskspooler.
2018-12-09 19:30:58 +00:00
# It also removes the junk from extentions.
2018-12-08 21:01:11 +00:00
queuefile="$HOME/.local/share/newsboat/queue"
while read -r line; do
[ -z "$line" ] && continue
2018-12-09 19:30:58 +00:00
url="$(echo "$line" | awk '{print $1}')"
2019-01-20 22:39:03 +00:00
qndl "$url" "curl -LO"
2018-12-08 21:01:11 +00:00
done < "$queuefile"
echo > "$queuefile"