diff options
-rwxr-xr-x | 1337x | 6 | ||||
-rwxr-xr-x | yts | 11 |
2 files changed, 11 insertions, 6 deletions
@@ -1,6 +1,7 @@ #!/bin/sh url_1337x="https://1337x.to" +proxy_1337x="https://1337x.torrentbay.to" die() { @@ -57,7 +58,7 @@ main() out= query= - dep_check "dmenu" "pirowatch" + dep_check "dmenu" "pirowatch" "curl" if [ "$#" -gt 0 ] && [ "$1" = "-o" ] then @@ -65,6 +66,9 @@ main() shift fi + curl -Is "$url_1337x" > /dev/null || + url_1337x="$proxy_1337x" + query="$*" : "${query:=$(printf "" | dmenu -p " ")}" [ -z "$query" ] && @@ -1,9 +1,7 @@ #!/bin/sh -# official -# url_yts="https://yts.mx" -# proxy -url_yts="https://yts.torrentbay.to" +url_yts="https://yts.mx" +proxy_yts="https://yts.torrentbay.to" die() { @@ -71,7 +69,7 @@ main() out= query= - dep_check "dmenu" "pirowatch" + dep_check "dmenu" "pirowatch" "curl" if [ "$#" -gt 0 ] && [ "$1" = "-o" ] then @@ -84,6 +82,9 @@ main() [ -z "$query" ] && die "please enter a query" + curl -Is "$url_yts" > /dev/null || + url_yts="$proxy_yts" + fetch="$(search_yts "$query")" dllink="$(dllink_yts "$(echo "$fetch" | dmenu -l 25 -p " ")")" |