diff --git a/system_setup/logon_script.sh b/system_setup/logon_script.sh index b6f1adf..1e2a651 100755 --- a/system_setup/logon_script.sh +++ b/system_setup/logon_script.sh @@ -30,7 +30,6 @@ if [[ $? -ne 0 ]]; then echo "Error: python3-ipaclient is not installed. Please install it via: sudo dnf install python3-ipaclient" fi - #TODO C: Check if Desktop is KDE/Plasma and support other Displays # Make kdesu use sudo kwriteconfig5 --file kdesurc --group super-user-command --key super-user-command sudo >/dev/null 2>&1 diff --git a/system_setup/setup_system.inc.sh b/system_setup/setup_system.inc.sh index 388d35c..62dc379 100755 --- a/system_setup/setup_system.inc.sh +++ b/system_setup/setup_system.inc.sh @@ -39,11 +39,11 @@ if [[ -f $(dirname "${BASH_SOURCE[0]:-$0}")/../config.d/configure.conf ]]; then else #Load default system setup file if [[ ! -f $(dirname "${BASH_SOURCE[0]:-$0}")/../config/setup_system.conf ]]; then - echo "System configuration not found." - echo "Please copy system_setup/config.dist/setup_system.conf.dist to config/setup_system.conf and adjust the settings before running." + echo "WARNING: System configuration not found." if [[ $_INC_MISSINGCONFOK -eq 1 ]]; then - echo "WARNING: Continuing without system configuration (--missingconfok)." + echo "Continuing without system configuration (--missingconfok), but this should only be for installing." else + echo "Please copy system_setup/config.dist/setup_system.conf.dist to config/setup_system.conf and adjust the settings before running." echo "Press any key to continue" && read -n 1 -s -r && exit 1 fi else