https://gitlab.com/christosangel/corsaro

corsaro is a script written in Bash that allows the user to search for torrents in the terminal .

colors1

The functions and the data are taken from https://piratebay.live/

Opening the script, the user through the main menu, can:

  • Search for a torrent

  • Search for a torrent in a category

  • Search for a torrent in multiple categories

  • Check out top 100 torrents in a category

  • Browse torrents in a category

  • Browse the most recent torrents

  • Repeat previous torrent search

  • Browse torrent search history and repeat a search using a stored key word

  • Configure the parameters of the script

  • MonkderVierte@lemmy.zip
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    3 hours ago

    Would you mind using tput for the color definitions instead of fixed strings? Makes it a bit more portable.

      • MonkderVierte@lemmy.zip
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        3 hours ago

        Well, there was the problem back then, that different terminals used different escape sequences, so tput was made as wrapper. Doesn’t matter as much anymore, since most (but not all) emulators use the same-isch terminals and interface painting has mostly moved to GUI. But it’s still something of a good manners thing.

        • MonkderVierte@lemmy.zip
          link
          fedilink
          arrow-up
          4
          ·
          edit-2
          2 hours ago

          Basically

          yellow="$(tput setaf 3)"
          blue="$(tput setaf 4)"
          bluebg="$(tput setab 4)"
          

          Also has the advantage of the variables being empty instead of printing sequences, if the terminal doesn’t support colors.