--- alx-src/trunk/alxinstall-ng/bin/alxinstall-ng.sh 2010/10/18 13:20:33 1576 +++ alx-src/trunk/alxinstall-ng/bin/alxinstall-ng.sh 2010/10/18 13:20:46 1577 @@ -21,7 +21,7 @@ ######################################## ### System/Config Version -VERSION="0.3.5" +VERSION="0.3.6" TITLE="alxinstall-ng - ${VERSION}" CDPATH="/mnt/cdrom" @@ -120,10 +120,13 @@ --cancel-label "Abbrechen" \ --ok-label "Weiter" \ --stdout \ + --colors \ --menu "\nWaehlen Sie die Installations-Methode" 14 70 5 \ - "1" "Automatisches Setup" \ - "2" "Normale IDE-Disk (manuell)" \ - "3" "Flash-Speicher (manuell)") + "1" "Automatisches Setup (Empfohlen)" \ + "" "" \ + "" "Experten Modi:" \ + "2" "Normale IDE-Disk (Manuell)" \ + "3" "Flash-Speicher (Manuell)") RES=$? [[ ${RES} -eq 1 ]] && return 1 if [[ ${RES} -eq 0 ]] @@ -132,6 +135,7 @@ "1") run_install_auto ;; "2") run_install_normal ;; "3") run_install_flash ;; + "") dialog_setup_system_menu;; esac fi }