entr command to replace podboat
This commit is contained in:
19
.scripts/tools/queueandnotify
Executable file
19
.scripts/tools/queueandnotify
Executable file
@@ -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"
|
||||
Reference in New Issue
Block a user