1
0
Fork 0
dotfiles/.local/bin/queueandnotify

15 lines
365 B
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
# Podboat sucks. This script replaces it.
# It reads the newsboat queue, queuing downloads with taskspooler.
2023-02-04 22:15:35 +01:00
# It also removes the junk from extensions.
2022-07-04 21:36:33 +02:00
queuefile="${XDG_DATA_HOME:-$HOME/.local/share}/newsboat/queue"
while read -r line; do
[ -z "$line" ] && continue
url="${line%%[ ]*}"
qndl "$url" "curl -LO"
2023-02-07 17:19:53 +01:00
done <"$queuefile"
2022-07-04 21:36:33 +02:00
2023-02-07 17:19:53 +01:00
echo >"$queuefile"