diff options
-rwxr-xr-x | 1337x | 5 | ||||
-rwxr-xr-x | yts | 4 |
2 files changed, 5 insertions, 4 deletions
@@ -29,7 +29,7 @@ dep_check() get_1337x() { : "${1:?}" - dep_check curl + dep_check "curl" curl --silent -H 'Accept-Encoding: gzip,deflate, br' --compressed "${url_1337x}/$1" } @@ -58,7 +58,7 @@ main() out= query= - dep_check "dmenu" "pirowatch" "curl" + dep_check "dmenu" if [ "$#" -gt 0 ] && [ "$1" = "-o" ] then @@ -84,6 +84,7 @@ main() then echo "$magnet" else + dep_check "pirowatch" pirowatch "$magnet" fi } @@ -48,7 +48,6 @@ dllink_yts() fetch= select= id= - dep_check "dmenu" fetch="$(get_yts "movies/$1" | grep -Eo "value=\"[A-Z0-9]{40}\">[a-zA-Z0-9 ]*")" select="$(echo "$fetch" | cut -d'>' -f2 | dmenu -l 25 -p " ")" @@ -69,7 +68,7 @@ main() out= query= - dep_check "dmenu" "pirowatch" "curl" + dep_check "dmenu" if [ "$#" -gt 0 ] && [ "$1" = "-o" ] then @@ -94,6 +93,7 @@ main() then echo "$dllink" else + dep_check "pirowatch" pirowatch -s "$dllink" fi } |