diff options
author | sinanmohd <pcmsinan@gmail.com> | 2023-02-19 13:55:56 +0530 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-03-11 19:05:05 +0530 |
commit | 8e86a2690af639f3ff1cffde3858fdcd22d7eda8 (patch) | |
tree | 9c54a863e586dfd057fab3f4f0022d97d6877e3e /yts | |
parent | 70c3a9209aba767678286f2d4263958b3000755b (diff) |
1337x, yts: fallback to proxy if handshake fails
Diffstat (limited to 'yts')
-rwxr-xr-x | yts | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -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 " ")")" |