mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-30 20:11:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			368 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			368 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| # Podboat sucks. This script replaces it.
 | |
| # It reads the newsboat queue, queuing downloads with taskspooler.
 | |
| # It also removes the junk from extentions.
 | |
| queuefile="$HOME/.local/share/newsboat/queue"
 | |
| 
 | |
| while read -r line; do
 | |
| 	[ -z "$line" ] && continue
 | |
| 	url="$(echo "$line" | awk '{print $1}')"
 | |
| 	qndl "$url" "curl -LO"
 | |
| done < "$queuefile"
 | |
| 
 | |
| echo > "$queuefile"
 |