This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Author: ir31k0 | |
| # Version 1.0.0 (10.04.2026) | |
| # Lizenz: MIT | |
| # | |
| # Beschreibung: Dieses Bash-Script überprüft automatisch, ob deine Entwicklungsumgebung für OpenAI | |
| # Codex unter WSL korrekt eingerichtet ist. Es prüft zentrale Komponenten wie Node.js (inkl. Version), | |
| # npm, Codex CLI, nvm sowie wichtige Tools wie ripgrep und git. Zusätzlich werden WSL-Umgebung, | |
| # Projektpfad und Git-Konfiguration validiert. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Original: https://gist.github.com/Eliastik/38e391183c137442403e4dc46d63ed26 | |
| # Author: Eliastik ( eliastiksofts.com/contact ) | |
| # Based on version 1.4.6 (22 february 2026) - Eliastik | |
| # Modified by: ir31k0 | |
| # | |
| # Description: This script checks for updates of the images for current installed Docker containers. | |
| # This script doesn't need root access as long as you are running the Docker daemon in rootless mode | |
| # or you followed the "Manage Docker as a non-root user" in the Docker documentation: https://docs.docker.com/engine/install/linux-postinstall/ |