Allow menu extensions to be set by the user

Closes #4012
Co-authored-by: @DarrenVictoriano
This commit is contained in:
David Heinemeier Hansson
2026-01-03 13:57:25 -08:00
parent e1b3a88126
commit 9e2ff7be1d

View File

@@ -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"