Hello all, I'm trying to follow the instructions here: https://tauri.app/v1/guides/features/menu/
I see variations of getting all windows with the same menu bar, or creating a one-off window with a menu bar, but I'm still too early in my rust/tauri adventure to understand how to apply a one-off window menu only to the main window.
So far as I can tell the default main window is being automagically generated behind the scenes by the default builder when this is called: .run(tauri::generate_context()), so the only builder I can attach a .menu call to appears to be the tauri::Builder::default(). However the link above does this and states this will force ALL windows to have this menu bar.
Is there some way for me to still rely on the default generate_context to build my window and rig a window menu in it somehow?