From 3176d951b62d5f6aee34e3f18126ccf68dd273f9 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 23 Nov 2025 01:28:05 -0500 Subject: [PATCH] Removed some unnecessary instructions from the first boot script. --- x86_64/airootfs/etc/profile.d/stormux_first_boot.sh | 6 +----- x86_64/airootfs/usr/local/bin/configure-stormux | 4 +--- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/x86_64/airootfs/etc/profile.d/stormux_first_boot.sh b/x86_64/airootfs/etc/profile.d/stormux_first_boot.sh index 843df65..cf506a2 100755 --- a/x86_64/airootfs/etc/profile.d/stormux_first_boot.sh +++ b/x86_64/airootfs/etc/profile.d/stormux_first_boot.sh @@ -51,11 +51,7 @@ clear cat << "EOF" Hello, and welcome to Stormux! -Let's get you set up. After you press enter, you will be prompted for the sudo password. -When that happens, type the word stormux and press enter. -You will not receive any speech feedback for this process. -That is completely normal, and speech will return after you have typed the password. -Once again, the password is stormux in all lower case letters. +Let's get you set up. Please press enter to continue. EOF diff --git a/x86_64/airootfs/usr/local/bin/configure-stormux b/x86_64/airootfs/usr/local/bin/configure-stormux index 746f36c..f7fbc7c 100755 --- a/x86_64/airootfs/usr/local/bin/configure-stormux +++ b/x86_64/airootfs/usr/local/bin/configure-stormux @@ -2,8 +2,7 @@ trap cleanup EXIT cleanup() { - echo "To continue setup, please run:" - echo "configure-stormux" + echo "Thank you for choosing Stormux!" } # Volume calibration is now handled in stormux_first_boot.sh @@ -77,6 +76,5 @@ else echo echo "To run the Stormux installer, type install-stormux" echo - echo "Thank you for choosing Stormux." exit 0 fi