mirror of
https://github.com/CoolnsX/repos_scripts.git
synced 2025-12-20 07:15:20 +05:30
QuickFix.
This commit is contained in:
6
tor-bay
6
tor-bay
@@ -11,7 +11,7 @@ display() {
|
||||
wait
|
||||
}
|
||||
|
||||
[ -z "$*" ] && printf "Search torrent:" && query=$(printf "" | dmenu -p "Search torrent: ") || query=$*
|
||||
[ -z "$*" ] && query=$(printf "" | bemenu --fn 'Roboto 15' -i -c -W 0.6 -B 3 -p "Search torrent: ") || query=$*
|
||||
[ -z "$query" ] && exit 0
|
||||
tmp=$(notify-send "Searching query" -p)
|
||||
query=$(printf "%s" "$query" | tr " " "+")
|
||||
@@ -19,7 +19,7 @@ data=$(curl -s "https://apibay.org/q.php?q=$query" | sed 's/},/}\n/g' | tr -d "[
|
||||
notify-send "tidying up data" -r $tmp
|
||||
size=$(printf "%s" "$data" | sed -nE 's/.*name.*size":"(.*)",.*user.*/\1/p')
|
||||
name_seed=$(printf "%s" "$data" | sed -nE 's/.*name":"(.*)","info_hash.*seeders":"(.*)",.*num.*/\2] \1/p')
|
||||
sel=$(display "$size" "$name_seed" | dmenu -l 25 -p "select torrent >" | cut -d" " -f3-)
|
||||
sel=$(display "$size" "$name_seed" | bemenu --fn 'Roboto 15' -i -c -W 0.6 -B 3 -l 25 -p "select torrent >" | cut -d" " -f3-)
|
||||
[ -z "$sel" ] && notify-send -u critical "No Torrent Selected" -r $tmp && exit 0 || notify-send "Selected $sel" -r $tmp
|
||||
magnet="magnet:?xt=urn:btih:$(printf "%s" "$data" | sed -nE 's/.*name":"(.*)","info_hash":"(.*)",.*leech.*/\2\t\1/p' | sed -n "s/\t$sel//p")"
|
||||
setsid -f st -e $HOME/repos_scripts/torrent "$magnet"
|
||||
setsid -f foot -e $HOME/repos_scripts/torrent "$magnet"
|
||||
|
||||
Reference in New Issue
Block a user