@main struct MyApp: App {
   var body: some Scene {
      WindowGroup {
         ContentView()
      }
      .commands {
         CommandMenu("Options") {
            Button("Option 1", systemImage: "1.circle", action: {
               print("This is the option 1")
            }).labelStyle(.titleAndIcon)
            Button("Option 2", systemImage: "2.circle", action: {
               print("This is the option 2")
            }).labelStyle(.titleAndIcon)
         }
      }
   }
}