Skip to content

Instantly share code, notes, and snippets.

@sindresorhus
Last active July 18, 2020 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sindresorhus/b3bc8d106a306d56cb15dc120ca602d4 to your computer and use it in GitHub Desktop.
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