summaryrefslogtreecommitdiffstats
path: root/.local/bin/queueandnotify
blob: 24746c8bd0f8104091470caa075b8928c907e74c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Podboat sucks. This script replaces it.
# It reads the newsboat queue, queuing downloads with taskspooler.
# It also removes the junk from extentions.
queuefile="$XDG_DATA_HOME/newsboat/queue"

while read -r line; do
	[ -z "$line" ] && continue
	url="$(echo "$line" | awk '{print $1}')"
	qndl "$url" "curl -LO"
done < "$queuefile"

echo > "$queuefile"