Files
omarchycn/bin/omarchy-reinstall
T
Ryan Hughes 75cb4f7195 Make setup ISO-only
Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
2026-06-04 18:37:32 -04:00

16 lines
480 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Reinstall Omarchy packages and reset default configs
# omarchy:requires-sudo=true
set -e
echo -e "This will reinstall all default Omarchy packages and reset default configs.\nWarning: user config changes will be overwritten.\n"
if gum confirm "Are you sure you want to reinstall and lose config changes?"; then
omarchy-reinstall-pkgs
omarchy-reinstall-configs
gum confirm "System has been reinstalled. Reboot?" && omarchy-system-reboot
fi