From fe9030f6c58198ddd54b482fc1964c56c12439b0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 17 Jun 2025 10:04:08 +0200 Subject: [PATCH] Cleaner seperation --- boot.sh | 5 ++--- install/2-identification.sh | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/boot.sh b/boot.sh index 78b1f62..97a2ad2 100644 --- a/boot.sh +++ b/boot.sh @@ -10,12 +10,11 @@ ascii_art=' ▄██████▄ ▄▄▄▄███▄▄▄▄ echo -e "\n$ascii_art\n\n" -echo "Starting installation of Omarchy..." sudo pacman -Sy --noconfirm --needed git >/dev/null -echo "Cloning Omarchy..." +echo "\nCloning Omarchy..." rm -rf ~/.local/share/omarchy/ git clone https://github.com/basecamp/omarchy.git ~/.local/share/omarchy >/dev/null -echo "Installation starting..." +echo "\nInstallation starting..." source ~/.local/share/omarchy/install.sh diff --git a/install/2-identification.sh b/install/2-identification.sh index 36db33a..d77a5d6 100644 --- a/install/2-identification.sh +++ b/install/2-identification.sh @@ -2,6 +2,6 @@ yay -S --noconfirm --needed gum # Configure identification -echo "Enter identification for git and autocomplete..." +echo "\nEnter identification for git and autocomplete..." export OMAKUB_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ") export OMAKUB_USER_EMAIL=$(gum input --placeholder "Enter email address" --prompt "Email> ")