diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-02-02 13:10:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-02 13:10:43 -0500 |
| commit | a37aba2078c083fecb9761e5dd6c740cf1414989 (patch) | |
| tree | 3b9e126da9cf874285718c91702fb14501a3faf5 /.scripts/tools/queueandnotify | |
| parent | 18378660cae369465f520fb656c64b59dc0c5411 (diff) | |
| parent | 1bffcd12c363064829682e16690430a118d962a4 (diff) | |
| download | eibhear-a37aba2078c083fecb9761e5dd6c740cf1414989.tar.gz eibhear-a37aba2078c083fecb9761e5dd6c740cf1414989.tar.zst eibhear-a37aba2078c083fecb9761e5dd6c740cf1414989.zip | |
Merge branch 'master' into dmenuumount
Diffstat (limited to '.scripts/tools/queueandnotify')
| -rwxr-xr-x | .scripts/tools/queueandnotify | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.scripts/tools/queueandnotify b/.scripts/tools/queueandnotify index 332668f..a1417ec 100755 --- a/.scripts/tools/queueandnotify +++ b/.scripts/tools/queueandnotify @@ -7,12 +7,7 @@ queuefile="$HOME/.local/share/newsboat/queue" while read -r line; do [ -z "$line" ] && continue url="$(echo "$line" | awk '{print $1}')" - base="$(basename "$url")" - notify-send -i "$PIX/dl.png" "Queuing $base..." - idnum="$(tsp curl -LO "$url")" - realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")" - tsp -D "$idnum" mv "$base" "$realname" - tsp -D "$idnum" notify-send -i "$PIX/check.png" "$realname done." + qndl "$url" "curl -LO" done < "$queuefile" echo > "$queuefile" |
