From 12b3d13ca4744d7c70a5071e54a5844acf12bb76 Mon Sep 17 00:00:00 2001 From: Jeremy McClure Date: Sat, 1 Aug 2026 17:57:16 -0400 Subject: [PATCH] Update 2 files: bootstrap.sh, functions.zsh --- bootstrap.sh | 7 ++++--- default/.config/zsh/functions.zsh | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 6803f79..761d0e4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -4,9 +4,10 @@ set -e LOCALBIN=$HOME/.local/bin # --- Helpers --- -info() { printf "\033[1;34m%s\033[0m\n" "$*"; } -warn() { printf "\033[1;33m%s\033[0m\n" "$*"; } -error() { printf "\033[1;31m%s\033[0m\n" "$*"; } +info() { printf "\033[1;34m%s\033[0m\n" "󰋼 $*"; } +warn() { printf "\033[1;33m%s\033[0m\n" "󰅚 $*"; } +error() { printf "\033[1;31m%s\033[0m\n" "󰅙 $*"; } +success() { printf "\033[1;32m%s\033[0m\n" "󰄬 $*"; } arch() { case "$(uname -m)" in diff --git a/default/.config/zsh/functions.zsh b/default/.config/zsh/functions.zsh index 959ca58..6bc9c93 100644 --- a/default/.config/zsh/functions.zsh +++ b/default/.config/zsh/functions.zsh @@ -1,6 +1,7 @@ -info() { printf "\033[1;34m%s\033[0m\n" "$*"; } -warn() { printf "\033[1;33m%s\033[0m\n" "$*"; } -error() { printf "\033[1;31m%s\033[0m\n" "$*"; } +info() { printf "\033[1;34m%s\033[0m\n" "󰋼 $*"; } +warn() { printf "\033[1;33m%s\033[0m\n" "󰅚 $*"; } +error() { printf "\033[1;31m%s\033[0m\n" "󰅙 $*"; } +success() { printf "\033[1;32m%s\033[0m\n" "󰄬 $*"; } bootstrap(){ curl -fsSL https://jeremy-web.space/shell.sh | bash