From 384406cfead96536fe25308062b9a130ede46235 Mon Sep 17 00:00:00 2001 From: pika Date: Thu, 22 May 2025 11:17:43 +0200 Subject: [PATCH] testing.. --- neovim.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/neovim.sh b/neovim.sh index 4f5d76e..da77846 100644 --- a/neovim.sh +++ b/neovim.sh @@ -28,7 +28,6 @@ sleep 0.1 return 0 else - echo_info "Sourcing external script:${NC} $url" # ─< if $1 is a url, grab it and source it, also deletes afterwards >───────────────────── if command_exists curl; then curl -fsSL $url -o $import @@ -40,6 +39,7 @@ fi source "$import" + echo_info "Sourcing external script:${NC} $url" sleep 0.1 rm -f "$import" fi @@ -91,16 +91,16 @@ debian | ubuntu | arch | fedora | alpine | opensuse) for pkg in "${pkgArray[@]}"; do if ! command_exists $pkg; then - spin red "Installing $pkg" + spin yellow bold "Installing $(pen red $pkg)" sleep 1 if run --err err _install $pkg; then - check "Installed $pkg" + check "$pkg $(pen green installed)!" else throw "Something went wrong! Could not install $(pen bold red $pkg)" throw "${err:-}" fi else - pen green "$pkg already installed." + pen "$pkg $(pen green already installed)" fi done ;;