From 91f5c4646c4fdc20a2d49596ade32ddf58653ad4 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 29 Jul 2025 16:44:55 +0200 Subject: [PATCH] Move updating themes from Updates to theme menu Yeah, it could go in either spot, but since we have one entire category dedicated to themes, lets keep it there. --- bin/omarchy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/omarchy b/bin/omarchy index a868a4d..a013a0c 100755 --- a/bin/omarchy +++ b/bin/omarchy @@ -30,7 +30,7 @@ main_menu() { update_menu() { show_ascii_art - local menu=("Omarchy" "Waybar" "Walker" "Plymouth" "SwayOSD" "Desktop apps" "Themes" "Back") + local menu=("Omarchy" "Waybar" "Walker" "Plymouth" "SwayOSD" "Desktop apps" "Back") local commands=( "omarchy-update" "omarchy-refresh-waybar" @@ -38,7 +38,6 @@ update_menu() { "omarchy-refresh-plymouth" "omarchy-refresh-swayosd" "omarchy-refresh-applications" - "omarchy-theme-update" "main_menu" ) local choice @@ -59,10 +58,11 @@ update_menu() { theme_menu() { show_ascii_art - local menu=("Pick" "Install" "Remove" "Back") + local menu=("Pick" "Install" "Update" "Remove" "Back") local commands=( "omarchy-theme-menu" "install_theme_prompt" + "omarchy-theme-update" "remove_theme_prompt" "main_menu" )