voidrice/.local/bin/queueandnotify

15 lines
367 B
Text
Raw Normal View History

#!/bin/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.
2020-04-08 23:06:11 +00:00
queuefile="${XDG_DATA_HOME:-$HOME/.local/share}/newsboat/queue"
2018-12-08 21:01:11 +00:00
while read -r line; do
[ -z "$line" ] && continue
url="${line%%[ ]*}"
2019-01-20 22:39:03 +00:00
qndl "$url" "curl -LO"
2018-12-08 21:01:11 +00:00
done < "$queuefile"
echo > "$queuefile"