From 9e2ff7be1d82edd0eefde465b52d7017889a4f46 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 3 Jan 2026 13:57:25 -0800 Subject: [PATCH] Allow menu extensions to be set by the user Closes #4012 Co-authored-by: @DarrenVictoriano --- bin/omarchy-menu | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 6332d724..16d04b89 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -524,6 +524,10 @@ go_to_menu() { esac } +# Allow user extensions and overrides +USER_EXTENSIONS="$HOME/.config/omarchy/extensions/menu.sh" +[[ -f $USER_EXTENSIONS ]] && source "$USER_EXTENSIONS" + if [[ -n "$1" ]]; then BACK_TO_EXIT=true go_to_menu "$1"