From 3916b46fd672baa4d7e1fd3ae8207808e3b91647 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 24 Jun 2025 09:38:21 -0700 Subject: [PATCH] Make extras mandatory --- install.sh | 5 +++-- extras.sh => install/xtras.sh | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename extras.sh => install/xtras.sh (100%) diff --git a/install.sh b/install.sh index d1e2b70..6fe4c7b 100644 --- a/install.sh +++ b/install.sh @@ -1,6 +1,7 @@ # Install everything for f in ~/.local/share/omarchy/install/*.sh; do source "$f"; done -gum confirm "Install all extra desktop apps?" && source ~/.local/share/omarchy/extras.sh -sudo updatedb # Ensure locate is up to date +# Ensure locate is up to date now that everything has been installed +sudo updatedb + gum confirm "Reboot to apply all settings?" && reboot diff --git a/extras.sh b/install/xtras.sh similarity index 100% rename from extras.sh rename to install/xtras.sh