From fe9493bd86dc3c3d36572a70b3bac674c0a29a00 Mon Sep 17 00:00:00 2001 From: Diogo Ferreira Date: Tue, 16 Dec 2025 15:50:45 +0000 Subject: [PATCH] openai-codex-bin -> openai-codex in menus (#3894) This was done in a migration in 0588cc8e5b76c8ff4cdf1c08e8657983dac9e307 but the menu entry was never updated. So, installs after the migration will get the outdated version. Added a new migration as well for those that installed after the previous one. --- bin/omarchy-menu | 2 +- migrations/1765884267.sh | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 migrations/1765884267.sh diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 5ddf81f3..77a77e37 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -279,7 +279,7 @@ show_install_ai_menu() { case $(menu "Install" "󱚤 Claude Code\n󱚤 Cursor CLI\n󱚤 Gemini\n󱚤 OpenAI Codex\n󱚤 LM Studio\n󱚤 Ollama\n󱚤 Crush\n󱚤 opencode") in *Claude*) install "Claude Code" "claude-code" ;; *Cursor*) install "Cursor CLI" "cursor-cli" ;; - *OpenAI*) install "OpenAI Codex" "openai-codex-bin" ;; + *OpenAI*) install "OpenAI Codex" "openai-codex" ;; *Gemini*) install "Gemini" "gemini-cli" ;; *Studio*) install "LM Studio" "lmstudio" ;; *Ollama*) install "Ollama" $ollama_pkg ;; diff --git a/migrations/1765884267.sh b/migrations/1765884267.sh new file mode 100644 index 00000000..f418914d --- /dev/null +++ b/migrations/1765884267.sh @@ -0,0 +1,6 @@ +echo "Change to openai-codex instead of openai-codex-bin" + +if omarchy-pkg-present openai-codex-bin; then + omarchy-pkg-drop openai-codex-bin + omarchy-pkg-add openai-codex +fi