diff --git a/bin/omarchy-first-run-flow b/bin/omarchy-first-run-flow index 516668a..5c91366 100755 --- a/bin/omarchy-first-run-flow +++ b/bin/omarchy-first-run-flow @@ -16,14 +16,20 @@ if gum confirm "Install editor in addition to Neovim?"; then esac fi +source ~/.local/share/omarchy/ansi.sh + if gum confirm "Login to GitHub?"; then gh auth login fi +source ~/.local/share/omarchy/ansi.sh + if gum confirm "Setup Dropbox?"; then omarchy-setup-dropbox fi +source ~/.local/share/omarchy/ansi.sh + if gum confirm "Start Docker DBs?"; then options=("MySQL" "Redis" "PostgreSQL") choices=$(printf "%s\n" "${options[@]}" | gum choose --no-limit --header "Select databases") || exit 0 @@ -39,5 +45,12 @@ if gum confirm "Start Docker DBs?"; then fi fi +source ~/.local/share/omarchy/ansi.sh + +echo "Updating all system packages..." +yay -Syu + +source ~/.local/share/omarchy/ansi.sh + gum spin --spinner "globe" --title "You're all set!" -- sleep 2 setsid chromium --new-window --ozone-platform=wayland --app="https://manuals.omamix.org/2/the-omarchy-manual" >/dev/null 2>&1 &