Skip to content

Commit c0b07ed

Browse files
authored
Merge pull request #109 from BojoteX/dev
One-liner install
2 parents 7730c16 + 89a023f commit c0b07ed

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77

88
## Quick Start
99

10-
**1.** Install [**Python**](https://www.python.org/downloads/) -- click the big yellow download button, run the installer, and check **"Add to PATH"**
10+
Open a terminal (CMD or PowerShell) and paste:
1111

12-
> Already have Python? Skip this step. Prefer a one-click install? Get it from the [Microsoft Store](https://apps.microsoft.com/detail/9pnrbtzxmb4z) instead.
13-
14-
**2.** [**Download CockpitOS**](https://github.com/BojoteX/CockpitOS/releases/latest/download/CockpitOS.zip) -- unzip anywhere
12+
```
13+
powershell -ExecutionPolicy Bypass -c "irm https://bojotex.github.io/CockpitOS/install.ps1 | iex"
14+
```
1515

16-
**3.** Double-click `START.py`
16+
That's it. The installer handles Python, downloads the latest release, and launches the Setup tool.
1717

18-
That's it. The Setup tool installs everything and connects you to the rest of the workflow.
18+
> **Prefer a manual install?** Install [Python 3.10+](https://www.python.org/downloads/), [download CockpitOS](https://github.com/BojoteX/CockpitOS/releases/latest/download/CockpitOS.zip), unzip, and double-click `START.py`.
1919
2020
---
2121

install.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CockpitOS Installer
2-
# Usage: powershell -c "irm https://raw.githubusercontent.com/BojoteX/CockpitOS/main/install.ps1 | iex"
2+
# Usage: powershell -ExecutionPolicy Bypass -c "irm https://bojotex.github.io/CockpitOS/install.ps1 | iex"
33
#
44
# First-time install only. If CockpitOS is already installed, this script
55
# will notify the user and launch the existing Setup tool instead.
@@ -10,10 +10,10 @@ $ErrorActionPreference = 'Stop'
1010
# ── Branding ────────────────────────────────────────────────────────────
1111
function Write-Banner {
1212
Write-Host ""
13-
Write-Host " ╔══════════════════════════════════════════╗" -ForegroundColor Cyan
14-
Write-Host " CockpitOS Installer " -ForegroundColor Cyan
15-
Write-Host " Firmware platform for DCS cockpits " -ForegroundColor Cyan
16-
Write-Host " ╚══════════════════════════════════════════╝" -ForegroundColor Cyan
13+
Write-Host " +--------------------------------------------+" -ForegroundColor Cyan
14+
Write-Host " | CockpitOS Installer |" -ForegroundColor Cyan
15+
Write-Host " | Firmware platform for DCS cockpits |" -ForegroundColor Cyan
16+
Write-Host " +--------------------------------------------+" -ForegroundColor Cyan
1717
Write-Host ""
1818
}
1919

0 commit comments

Comments
 (0)