diff options
author | Jesús <heckyel@hyperbola.info> | 2022-05-24 01:23:36 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-05-24 01:23:36 +0800 |
commit | ba76c720b72902dbfc22a6818b9ad21d10ffb855 (patch) | |
tree | 98ccd23bb2c17729afe6df49f5173f60eb217846 | |
parent | e58613ff5cb80e4de5e6d9a465eaba4202b2405a (diff) | |
download | hyperfi-ba76c720b72902dbfc22a6818b9ad21d10ffb855.tar.lz hyperfi-ba76c720b72902dbfc22a6818b9ad21d10ffb855.tar.xz hyperfi-ba76c720b72902dbfc22a6818b9ad21d10ffb855.zip |
Add screen to extra packages and update URL mirror
-rw-r--r-- | hyperfi | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1633,10 +1633,12 @@ archextrasmenu(){ pkgs="" options=() options+=("nano" "" on) + options+=("screen" "" on) options+=("vim" "" on) options+=("dhcpcd" "" on) options+=("iw" "" on) options+=("net-tools" "" on) + options+=("bind-tools" "" on) sel=$(whiptail --backtitle "${apptitle}" --title "${txtextrasmenu}" --checklist "" 0 0 0 \ "${options[@]}" \ 3>&1 1>&2 2>&3) @@ -1858,7 +1860,7 @@ while (( "$#" )); do echo "-cpl | --custom-package-list url Set custom package list url" echo "-sf | --skip-font Skip setfont from language files" echo "-efiX -efi0 : disable EFI, -efi1 efi inst, -efi2 efi hybrid inst" - echo "-t | --test codebergname ghbranch Test hyperfi script and language" + echo "-t | --test hypergit name branch Test hyperfi script and language" exit 0 ;; -cpl | --custom-package-list) @@ -1871,11 +1873,11 @@ while (( "$#" )); do ;; -sf | --skip-font) skipfont=1;; -t | --test) - wget -O hyperfi https://codeberg.org/${2}/hyperfi/raw/branch/${3}/hyperfi + wget -O hyperfi https://hgit.ga/${2}/hyperfi/raw/branch/${3}/hyperfi sh hyperfi -tt ${2} ${3} exit 0 ;; - -tt) baseurl="https://codeberg.org/${2}/hyperfi/raw/branch/${3}";; + -tt) baseurl="https://hgit.ga/${2}/hyperfi/raw/branch/${3}";; -efi0) efimode=0 ;; |