Basic installation now working, system comes up talking.

This commit is contained in:
Storm Dragon
2025-11-25 18:07:51 -05:00
parent b4704295ec
commit dfd2609461
3 changed files with 93 additions and 35 deletions

View File

@@ -36,6 +36,10 @@ log_error() {
echo "ERROR: $*" | tee -a "$logFile" >&2
}
log_warning() {
echo "WARNING: $*" | tee -a "$logFile" >&2
}
log_info() {
echo "INFO: $*" | tee -a "$logFile"
}
@@ -1529,11 +1533,6 @@ if ! install_bootloader; then
exit 1
fi
# Install helper scripts
if ! install_helper_scripts; then
log_warning "Helper script installation had issues (non-fatal)"
fi
# Install game managers
if ! install_game_managers; then
log_warning "Game manager installation had issues (non-fatal)"
@@ -1558,9 +1557,6 @@ if [[ "$desktopEnvironment" == "i3" ]]; then
log " 4. Your i3 desktop is configured with I38 for accessibility"
log " - I38 source is available in ~/git/I38 for customization"
log " - Press Alt+Shift+F1 for I38 help after login"
log " 5. Run 'configure-stormux' for additional setup"
else
log " 4. Run 'configure-stormux' for additional setup"
fi
log ""