diff --git a/bin/omarchy-menu b/bin/omarchy-menu index ab44ee66..4bbbbea6 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -576,6 +576,10 @@ show_main_menu() { go_to_menu "$(menu "Go" "󰀻 Apps\n󰧑 Learn\n󱓞 Trigger\n Style\n Setup\n󰉉 Install\n󰭌 Remove\n Update\n About\n System")" } +show_about() { + omarchy-launch-about +} + go_to_menu() { case "${1,,}" in *apps*) walker -p "Launch…" ;; @@ -592,7 +596,7 @@ go_to_menu() { *install*) show_install_menu ;; *remove*) show_remove_menu ;; *update*) show_update_menu ;; - *about*) omarchy-launch-about ;; + *about*) show_about ;; *system*) show_system_menu ;; esac } diff --git a/config/omarchy/extensions/menu.sh b/config/omarchy/extensions/menu.sh index 743002ba..76857c15 100644 --- a/config/omarchy/extensions/menu.sh +++ b/config/omarchy/extensions/menu.sh @@ -12,3 +12,9 @@ # *) back_to show_main_menu ;; # esac # } +# +# Example of overriding just the about menu action: (Using zsh instead of bash (default)) +# +# show_about() { +# exec omarchy-launch-or-focus-tui "zsh -c 'fastfetch; read -k 1'" +# }