You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Exit immediately if a command exits with a non-zero status
set -eE
# Add .local/bin to PATH
export PATH="$HOME/.local/bin:$PATH"
# Prompt with gum to choose the folder to setup.
FOLDER=$(gum choose "omarchy-post-install" "common-no-omarchy" "archlinux" "macos" "minimal" "minimal-app" --header "Choose the setup you want to run :")
if [ -z "$FOLDER" ]; then
echo "No folder selected. Exiting."
exit 1
fi
# Start the setup process based on the chosen folder.
(
source "./$FOLDER/setup.sh"
)
echo "Setup completed successfully."
echo "Please restart your computer to apply all changes."