big overhaul

This commit is contained in:
Ryan Wolfe
2023-03-05 11:59:23 -05:00
parent fa3fd3e373
commit 0b91dd8235
1165 changed files with 2107 additions and 8 deletions

14
.local/bin/queueandnotify Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
# Podboat sucks. This script replaces it.
# It reads the newsboat queue, queuing downloads with taskspooler.
# It also removes the junk from extensions.
queuefile="${XDG_DATA_HOME:-$HOME/.local/share}/newsboat/queue"
while read -r line; do
[ -z "$line" ] && continue
url="${line%%[ ]*}"
qndl "$url" "curl -LO"
done < "$queuefile"
echo > "$queuefile"