https://github.com/quickemu-project/quickemu/pull/864
Needs to be merged to work
This commit is contained in:
zenobit 2023-12-14 15:23:12 +01:00 committed by zenobit
parent e78cd81da3
commit 3106911166

6
qrun
View file

@ -56,7 +56,7 @@ show_vms() {
show_headers() {
distro=$(shuf -n 1 /tmp/supported)
homepage=$("$QUICKGET" -h "${distro}")
homepage=$("$QUICKGET" -s "${distro}")
header_logo=$(gum style --padding "0 1" --border=rounded --border-foreground $color " Simple VMs runner
▄▄▄▄ ▄▄▄ ▄ ▄ ▄ ▄
@ -66,9 +66,9 @@ show_headers() {
v$version▀ for quickemu")
tip_header=$(gum style --bold "Tip: ")
tip_distro=$(gum style $distro)
tip_distro=$(gum style --align left "$distro")
tip_temp=$(gum join --align top "$tip_header" "$tip_distro")
tip_homepage=$(gum style $homepage)
tip_homepage=$(gum style --align left "$homepage")
tip=$(gum join --vertical --align top "$tip_temp" "$tip_homepage")
tip_border=$(gum style --padding "0 1" --border=rounded --border-foreground $color "$tip")