entr command to replace podboat
This commit is contained in:
parent
f4d2ac1419
commit
924a44618f
3 changed files with 28 additions and 1 deletions
|
@ -60,9 +60,11 @@ exec --no-startup-id remaps
|
||||||
# Unclutter makes the mouse invisible after a brief period
|
# Unclutter makes the mouse invisible after a brief period
|
||||||
exec --no-startup-id unclutter
|
exec --no-startup-id unclutter
|
||||||
# Run the script to update the mpd i3block on change.
|
# Run the script to update the mpd i3block on change.
|
||||||
exec --no-startup-id i3mpdupdate
|
exec_always --no-startup-id i3mpdupdate
|
||||||
# mpd startup
|
# mpd startup
|
||||||
exec --no-startup-id mpd
|
exec --no-startup-id mpd
|
||||||
|
# Podboat automatic queue and download
|
||||||
|
exec --no-startup-id podentr
|
||||||
|
|
||||||
# Set Xresources colors:
|
# Set Xresources colors:
|
||||||
set_from_resource $darkblack color0 #000000
|
set_from_resource $darkblack color0 #000000
|
||||||
|
|
6
.scripts/tools/podentr
Executable file
6
.scripts/tools/podentr
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# entr command to run `queueandnotify` when newsboat queue is changed
|
||||||
|
|
||||||
|
[ "$(pgrep -x $(basename $0) | wc -l)" -gt 2 ] && exit
|
||||||
|
|
||||||
|
echo ~/.local/share/newsboat/queue | entr -p queueandnotify 2>/dev/null
|
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"
|
Loading…
Reference in a new issue