This repository contains separate launchers for running Codex on Linux and Windows.
.
├── linux/
│ ├── README.md
│ ├── codex-linux-bridge.sh
│ ├── codex-macos-to-linux.sh
│ └── install-codex-linux.sh
└── windows/
├── README.md
├── codex-windows-bridge.ps1
├── patch-main-windows.cjs
└── install-codex-windows.ps1
git clone https://github.com/nassimna/codex-linux-launcher.git codex-launcher
cd codex-launcher
chmod +x linux/codex-linux-bridge.sh
./linux/codex-linux-bridge.shRun after install:
~/.local/share/openai-codex-linux/run-codex.shOptional one-liner installer:
curl -fsSL https://raw.githubusercontent.com/nassimna/codex-linux-launcher/main/linux/install-codex-linux.sh | bashPowerShell:
git clone https://github.com/nassimna/codex-linux-launcher.git codex-launcher
cd codex-launcher
Set-ExecutionPolicy -Scope Process Bypass
.\windows\codex-windows-bridge.ps1Run after install:
$env:LOCALAPPDATA\openai-codex-windows\run-codex.vbsOptional installer wrapper:
.\windows\install-codex-windows.ps1One-shot install from PowerShell (no git required):
irm https://raw.githubusercontent.com/nassimna/codex-linux-launcher/main/windows/install-codex-windows.ps1 | iexThe Windows bridge script bootstraps missing dependencies (Node.js, 7-Zip, and native-build prerequisites when required) via winget by default.
- Linux details:
linux/README.md - Windows details:
windows/README.md