diff --git a/bin/restore-full.sh b/bin/restore-full.sh index 1b580c8..1ceb00b 100755 --- a/bin/restore-full.sh +++ b/bin/restore-full.sh @@ -31,5 +31,16 @@ echo "" echo "Rebuilding frontend dependencies..." cd "$NEXUS_ROOT/interface/web" && npm install +echo "" +echo "Restoring NexusOS desktop theme..." +theme_installer="$NEXUS_ROOT/assets/themes/install-theme.sh" +if [ -x "$theme_installer" ]; then + "$theme_installer" +elif [ -f "$theme_installer" ]; then + bash "$theme_installer" +else + echo "Warning: $theme_installer not found — skipping theme restore." +fi + echo "" echo "Restore complete. Nexus is ready to start."