diff --git a/README.md b/README.md index 849ab80..cb1b1da 100644 --- a/README.md +++ b/README.md @@ -6,25 +6,35 @@ Ein modulares, sicheres und erweiterbares Framework zur automatisierten Einricht ## 🚀 Schnellstart -### 1. Interaktiver TUI-Modus (Empfohlen) +### 1. One-Liner (Klonen & Starten) +Klonen des Repositories und direkter Start des Setups in einem einzigen Befehl: +```bash +git clone https://gitea.creative-dragonslayer.de/Scripts/Setup.git && cd Setup && sudo ./setup.sh +``` +Oder direkt vollautomatisch alle Stages (`00` bis `10`) ausführen: +```bash +git clone https://gitea.creative-dragonslayer.de/Scripts/Setup.git && cd Setup && sudo ./setup.sh --all +``` + +### 2. Interaktiver TUI-Modus (Empfohlen) Starte das grafische Terminal-Menü (`whiptail`) zur flexiblen Auswahl einzelner Module: ```bash sudo ./setup.sh ``` -### 2. Vollautomatischer CLI-Modus +### 3. Vollautomatischer CLI-Modus Führe alle Phasen (`00` bis `10`) ohne Interaktion aus: ```bash sudo ./setup.sh --all ``` -### 3. Gezielte Modulauswahl +### 4. Gezielte Modulauswahl Installiere nur bestimmte Phasen (z. B. nur Paketlisten und Schriften): ```bash sudo ./setup.sh --stages 04,05 ``` -### 4. Simulationslauf (Dry-Run) +### 5. Simulationslauf (Dry-Run) Überprüfe geplante Aktionen, ohne Änderungen am System vorzunehmen: ```bash ./setup.sh --dry-run --stages 01,02,04