From 924a44618fb9bd52697fd9f1125df6159384bf48 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sat, 8 Dec 2018 16:01:11 -0500 Subject: entr command to replace podboat --- .scripts/tools/queueandnotify | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 .scripts/tools/queueandnotify (limited to '.scripts/tools/queueandnotify') diff --git a/.scripts/tools/queueandnotify b/.scripts/tools/queueandnotify new file mode 100755 index 0000000..d9a43c8 --- /dev/null +++ b/.scripts/tools/queueandnotify @@ -0,0 +1,19 @@ +#!/bin/sh + +# Podboat sucks. This script replaces it. +# It reads the newsboat queue, queuing downloads with taskspooler. + +dlcmd="curl -LO" +queuefile="$HOME/.local/share/newsboat/queue" + +while read -r line; do + [ -z "$line" ] && continue + url="$(echo $line | awk '{print $1}')" + base="$(basename $url)" + note "Queuing $base..." "$PIX/dl.png" + idnum="$(tsp $dlcmd $url)" + tsp -D "$idnum" notify-send -i "$PIX/check.png" "$base done." + tsp -D "$idnum" mv "$base" "$(echo $base | sed "s/?dest.*//")" +done < "$queuefile" + +echo > "$queuefile" -- cgit v1.3.1