v3-revamp-fedora

This commit is contained in:
2026-07-06 17:39:16 +02:00
parent d92c60e300
commit 17832f8430
+3 -3
View File
@@ -115,7 +115,7 @@ case "$DE" in
SCRIPT_NAME="$SCRIPT_DIR/${OS}-${DE}.sh"
if [[ -f "$SCRIPT_NAME" ]]; then
color_cyan "Running $SCRIPT_NAME"
bash "$SCRIPT_NAME"
source "$SCRIPT_NAME"
else
color_red "Error: $SCRIPT_NAME not found!"
exit 1
@@ -137,7 +137,7 @@ case "$TWM" in
SCRIPT_NAME="$SCRIPT_DIR/${OS}-${TWM}.sh"
if [[ -f "$SCRIPT_NAME" ]]; then
color_cyan "Running $SCRIPT_NAME"
bash "$SCRIPT_NAME"
source "$SCRIPT_NAME"
else
color_red "Error: $SCRIPT_NAME not found!"
exit 1
@@ -159,7 +159,7 @@ case "$INSTALL_LEVEL" in
SCRIPT_NAME="$SCRIPT_DIR/${OS}-${INSTALL_LEVEL}.sh"
if [[ -f "$SCRIPT_NAME" ]]; then
color_cyan "Running $SCRIPT_NAME"
bash "$SCRIPT_NAME"
source "$SCRIPT_NAME"
else
color_red "Error: $SCRIPT_NAME not found!"
exit 1