1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-17 17:47:46 +01:00
dotfiles/.local/bin/tools/queueandnotify
2019-09-13 10:51:43 +02:00

14 lines
368 B
Bash
Executable File

#!/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="$HOME/.local/share/newsboat/queue"
while read -r line; do
[ -z "$line" ] && continue
url="$(echo "$line" | awk '{print $1}')"
qndl "$url" "curl -LO"
done < "$queuefile"
echo > "$queuefile"