v3-revamp-fedora

This commit is contained in:
2026-07-06 15:34:38 +02:00
parent 7a31afc969
commit 21f2a07264
+3 -3
View File
@@ -130,7 +130,7 @@ color_gray "Installation Level: $INSTALL_LEVEL"
case "$DE" in case "$DE" in
xfce|plasma|gnome) xfce|plasma|gnome)
color_yellow "Preparing to install $DE..." color_yellow "Preparing to install $DE..."
SCRIPT_NAME="$SCRIPT_DIR/${OS}/${OS}-${DE}.sh" SCRIPT_NAME="$SCRIPT_DIR/${OS}-${DE}.sh"
if [[ -f "$SCRIPT_NAME" ]]; then if [[ -f "$SCRIPT_NAME" ]]; then
color_cyan "Running $SCRIPT_NAME..." color_cyan "Running $SCRIPT_NAME..."
bash "$SCRIPT_NAME" bash "$SCRIPT_NAME"
@@ -150,7 +150,7 @@ esac
case "$TWM" in case "$TWM" in
chadwm|hyprland|niri) chadwm|hyprland|niri)
color_yellow "Installing $TWM..." color_yellow "Installing $TWM..."
SCRIPT_NAME="$SCRIPT_DIR/${OS}/${OS}-${TWM}.sh" SCRIPT_NAME="$SCRIPT_DIR/${OS}-${TWM}.sh"
if [[ -f "$SCRIPT_NAME" ]]; then if [[ -f "$SCRIPT_NAME" ]]; then
color_cyan "Running $SCRIPT_NAME..." color_cyan "Running $SCRIPT_NAME..."
bash "$SCRIPT_NAME" bash "$SCRIPT_NAME"
@@ -170,7 +170,7 @@ esac
case "$INSTALL_LEVEL" in case "$INSTALL_LEVEL" in
minimal|full|workstation|server) minimal|full|workstation|server)
color_cyan "Installation level: $INSTALL_LEVEL" color_cyan "Installation level: $INSTALL_LEVEL"
SCRIPT_NAME="$SCRIPT_DIR/${OS}/${OS}-${INSTALL_LEVEL}.sh" SCRIPT_NAME="$SCRIPT_DIR/${OS}-${INSTALL_LEVEL}.sh"
if [[ -f "$SCRIPT_NAME" ]]; then if [[ -f "$SCRIPT_NAME" ]]; then
color_cyan "Running $SCRIPT_NAME..." color_cyan "Running $SCRIPT_NAME..."
bash "$SCRIPT_NAME" bash "$SCRIPT_NAME"