diff options
| author | Arthur Bais <arthur@arthurbais.xyz> | 2020-11-14 22:12:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-14 15:12:38 -0500 |
| commit | 38815c3ad1a3ab75892b8146b424a2bc5e7c84cc (patch) | |
| tree | 21ed9d63313f2dbb5d44971504d89e0f6c413b51 | |
| parent | 97358cfe8180b1abfe0d1fe06799277c06fa8f8a (diff) | |
| download | eibhear-38815c3ad1a3ab75892b8146b424a2bc5e7c84cc.tar.gz eibhear-38815c3ad1a3ab75892b8146b424a2bc5e7c84cc.tar.zst eibhear-38815c3ad1a3ab75892b8146b424a2bc5e7c84cc.zip | |
add peertube torrents from newsboat (#760)
* Create peertubetorrent
* macro to torrent new videos on peertube
* fix typo
* rebind
| -rw-r--r-- | .config/newsboat/config | 4 | ||||
| -rw-r--r-- | .local/bin/peertubetorrent | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/.config/newsboat/config b/.config/newsboat/config index b5035b8..e917991 100644 --- a/.config/newsboat/config +++ b/.config/newsboat/config @@ -35,9 +35,11 @@ macro t set browser "qndl" ; open-in-browser ; set browser linkhandler macro a set browser "tsp youtube-dl --add-metadata -xic -f bestaudio/best" ; open-in-browser ; set browser linkhandler macro v set browser "setsid -f mpv" ; open-in-browser ; set browser linkhandler macro w set browser "lynx" ; open-in-browser ; set browser linkhandler -macro p set browser "dmenuhandler" ; open-in-browser ; set browser linkhandler +macro d set browser "dmenuhandler" ; open-in-browser ; set browser linkhandler macro c set browser "xsel -b <<<" ; open-in-browser ; set browser linkhandler macro C set browser "youtube-viewer --comments=%u" ; open-in-browser ; set browser linkhandler +macro p set browser "peertubetorrent %u 480" ; open-in-browser ; set browser linkhandler +macro P set browser "peertubetorrent %u 1080" ; open-in-browser ; set browser linkhandler highlight all "---.*---" yellow highlight feedlist ".*(0/0))" black diff --git a/.local/bin/peertubetorrent b/.local/bin/peertubetorrent new file mode 100644 index 0000000..56f2476 --- /dev/null +++ b/.local/bin/peertubetorrent @@ -0,0 +1,7 @@ +#!/bin/sh +# torrent peertube videos, requires the transadd script +# first argument is the video link, second is the quality (480 or 1080) +# 13/07/20 - Arthur Bais + +link="$(echo "$1" | sed "s/videos\/watch/download\/torrents/")""-$2.torrent" +transadd "$link" |
