From 768c553c4cfc6e95890ee78fc9a3f275c6281e09 Mon Sep 17 00:00:00 2001 From: Marco <77896841+annoyedmilk@users.noreply.github.com> Date: Fri, 23 Jan 2026 14:26:30 +0100 Subject: [PATCH] Add missing icons to Development remove menus (#4339) * Add missing icons to Development remove menus The Install > Development menu shows icons for each language, but the Remove > Development menu was missing them (only Ruby on Rails had its icon). This adds the matching icons to: - show_remove_development_menu - show_remove_javascript_menu - show_remove_php_menu - show_remove_elixir_menu --------- Co-authored-by: incpo Co-authored-by: Ryan Hughes --- bin/omarchy-menu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index c84ab119..6e0e5012 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -445,7 +445,7 @@ show_remove_menu() { } show_remove_development_menu() { - case $(menu "Remove" "󰫏 Ruby on Rails\n JavaScript\n Go\n PHP\n Python\n Elixir\n Zig\n Rust\n Java\n .NET\n OCaml\n Clojure") in + case $(menu "Remove" "󰫏 Ruby on Rails\n JavaScript\n Go\n PHP\n Python\n Elixir\n Zig\n Rust\n Java\n .NET\n OCaml\n Clojure") in *Rails*) present_terminal "omarchy-remove-dev-env ruby" ;; *JavaScript*) show_remove_javascript_menu ;; *Go*) present_terminal "omarchy-remove-dev-env go" ;; @@ -463,7 +463,7 @@ show_remove_development_menu() { } show_remove_javascript_menu() { - case $(menu "Remove" " Node.js\n Bun\n Deno") in + case $(menu "Remove" " Node.js\n Bun\n Deno") in *Node*) present_terminal "omarchy-remove-dev-env node" ;; *Bun*) present_terminal "omarchy-remove-dev-env bun" ;; *Deno*) present_terminal "omarchy-remove-dev-env deno" ;; @@ -472,7 +472,7 @@ show_remove_javascript_menu() { } show_remove_php_menu() { - case $(menu "Remove" " PHP\n Laravel\n Symfony") in + case $(menu "Remove" " PHP\n Laravel\n Symfony") in *PHP*) present_terminal "omarchy-remove-dev-env php" ;; *Laravel*) present_terminal "omarchy-remove-dev-env laravel" ;; *Symfony*) present_terminal "omarchy-remove-dev-env symfony" ;; @@ -481,7 +481,7 @@ show_remove_php_menu() { } show_remove_elixir_menu() { - case $(menu "Remove" " Elixir\n Phoenix") in + case $(menu "Remove" " Elixir\n Phoenix") in *Elixir*) present_terminal "omarchy-remove-dev-env elixir" ;; *Phoenix*) present_terminal "omarchy-remove-dev-env phoenix" ;; *) show_remove_development_menu ;;