Initial commit

This commit is contained in:
Felipe M 2025-09-18 19:56:06 +02:00
commit 1db16227b2
Signed by: fmartingr
GPG key ID: CCFBC5637D4000A8
31 changed files with 2175 additions and 0 deletions

18
Sources/App/main.swift Normal file
View file

@ -0,0 +1,18 @@
import SwiftUI
@main
struct MenuWhisperApp: App {
var body: some Scene {
MenuBarExtra("Menu-Whisper", systemImage: "mic") {
Text("Menu-Whisper")
Text("Idle")
Divider()
Button("Preferences...") {
// TODO: Open preferences
}
Button("Quit") {
NSApplication.shared.terminate(nil)
}
}
}
}