diff --git a/private_dot_local/bin/executable_update b/private_dot_local/bin/executable_update index bd694e3..c961aee 100644 --- a/private_dot_local/bin/executable_update +++ b/private_dot_local/bin/executable_update @@ -22,7 +22,7 @@ echo_bold() { # Affiche un message informatif stylisé sur la sortie d'erreur echo_info() { - printf >&2 "${BLUE}󰋼 %s${RESET}\n" "$*" + printf >&2 "\n${BLUE}󰋼 %s${RESET}\n\n" "$*" } echo_success() { @@ -63,6 +63,7 @@ run() { echo echo_bold "🚀 Mise à jour quotidienne" +echo # ---------------------------------------------------------------------- # Debian / Ubuntu @@ -166,31 +167,37 @@ fi echo echo_info "Récapitulatif" +echo +echo -n " ► " case "$STATUS_APT" in success) echo_success "APT : réussi" ;; failed) echo_failed "APT : échoué" ;; not_detected) echo_skipped "APT : non détecté" ;; esac +echo -n " ► " case "$STATUS_BREW" in success) echo_success "Brew : réussi" ;; failed) echo_failed "Brew : échoué" ;; not_detected) echo_skipped "Brew : non détecté" ;; esac +echo -n " ► " case "$STATUS_CHEZMOI" in success) echo_success "chezmoi : réussi" ;; failed) echo_failed "chezmoi : échoué" ;; not_detected) echo_skipped "chezmoi : non détecté" ;; esac +echo -n " ► " case "$STATUS_MISE" in success) echo_success "mise : réussi" ;; failed) echo_failed "mise : échoué" ;; not_detected) echo_skipped "mise : non détecté" ;; esac +echo -n " ► " case "$STATUS_NEOVIM" in success) echo_success "Neovim : réussi" ;; failed) echo_failed "Neovim : échoué" ;;