From c34d8468b112d73d7ec70b5280da56557224928e Mon Sep 17 00:00:00 2001 From: zenobit Date: Wed, 25 Oct 2023 01:34:01 +0200 Subject: [PATCH] quickget: feature enhancement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test all ISOs ’wget --spider’ show all ISOs URLs open distro homepage --- quickfzf | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/quickfzf b/quickfzf index 4b2933b625..aef83c314c 100755 --- a/quickfzf +++ b/quickfzf @@ -217,14 +217,18 @@ tui_advanced_menu() { default VMs config edit VM config quickemu custom command -add distro to quickget -test distro sources" | fzf --height 10% --layout=reverse --info=inline --header-lines=1) +quickget add distro +quickget test ISOs URLs +quickget show ISOs URLs +open distro homepage" | fzf --height 10% --layout=reverse --info=inline --header-lines=1) case $advance in 'default VMs config' ) tui_edit_default_VMs_config;; 'edit VM config' ) tui_edit_VM_config;; 'quickemu custom command' ) tui_custom_quickemu_command;; - 'add distro to quickget' ) quickget_add_distro;; - 'test distro sources' ) quickget_test_download_ISOs;; + 'quickget add distro' ) quickget_add_distro;; + 'quickget test ISOs URLs' ) quickget_test_download_ISOs;; + 'quickget show ISOs URLs' ) quickget_show_isos_urls;; + 'open distro homepage' ) quickget_open_distro_homepage;; esac } tui_what_to_do() {