Bugswriter / notflix

Notflix is a shell script to search and stream torrent.
GNU General Public License v3.0
1.9k stars 176 forks source link

Way to display more than 20 titles? #39

Closed cowmama7 closed 2 years ago

cowmama7 commented 2 years ago

It seems notflix caps out at 20 titles displayed, what can I alter in the notflix.sh file to change this cap to 50 or so?

alpheratz0 commented 2 years ago

You need to get the number of pages, then the total number of results is around 20 * num_pages

num_pages=$(grep -Po '<li class="last"><a href="/search/game/\K[0-9]+(?=/">Last</a></li>)' "$cachedir/tmp.html") || num_pages=1

I will do a pull request with that feature soon