When I left-click the tray icon, nothing happens. I know I can set a primary action, but I want the primary action to be opening the menu (the menu opens fine when right-clicking), and I can't find a way to do that. In the Readme I see you wrote:
// Open a window, display a menu, etc.
But there is no example I can see for actually displaying a menu. I was expecting something like this for example
val menuState = rememberMenuState()
Tray(
menuState = menuState,
primaryAction = { menuState.open() }
) { .. }