diff --git a/scripts/generate_readme.py b/scripts/generate_readme.py index 0bd78fdf..c0da5f6b 100644 --- a/scripts/generate_readme.py +++ b/scripts/generate_readme.py @@ -116,6 +116,23 @@ def generate_readme(db: dict, platforms_dir: str) -> str: f"**{total_files:,}** verified files across **{len(system_ids)}** systems," f" ready to extract into your emulator's BIOS directory.", "", + "## Quick Install", + "", + "Copy one command into your terminal:", + "", + "```bash", + "# Linux / macOS / Steam Deck", + "curl -fsSL https://raw.githubusercontent.com/Abdess/retrobios/main/install.sh | sh", + "", + "# Windows (PowerShell)", + "irm https://raw.githubusercontent.com/Abdess/retrobios/main/install.ps1 | iex", + "", + "# Handheld (SD card mounted on PC)", + "curl -fsSL https://raw.githubusercontent.com/Abdess/retrobios/main/install.sh | sh -s -- --platform retroarch --dest /path/to/sdcard", + "```", + "", + "The script auto-detects your platform, downloads only missing files, and verifies checksums.", + "", "## Download BIOS packs", "", "Pick your platform, download the ZIP, extract to the BIOS path.",