Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
16 lines
480 B
Bash
Executable File
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
|