Skip to content

Instantly share code, notes, and snippets.

@sindresorhus
Last active February 6, 2026 17:34
Show Gist options
  • Select an option

  • Save sindresorhus/b3bc8d106a306d56cb15dc120ca602d4 to your computer and use it in GitHub Desktop.

Select an option

Save sindresorhus/b3bc8d106a306d56cb15dc120ca602d4 to your computer and use it in GitHub Desktop.
Dream API for macOS menu bar apps
@main
struct MyApp: App {
var body: some Scene {
StatusBar {
StatusItem(id: "foo", systemImage: "gear") {
Menu {
Button("Toggle") {}
Divider()
Button("Quit") {}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment