Files
GrowthLapse/Sources/GrowthLapse/GrowthLapseApp.swift
T

35 lines
930 B
Swift

import AppKit
import SwiftUI
@main
struct GrowthLapseApp: App {
@NSApplicationDelegateAdaptor(AppDelegate.self) private var appDelegate
var body: some Scene {
WindowGroup {
ContentView()
.frame(minWidth: 980, minHeight: 680)
}
.windowStyle(.titleBar)
.commands {
CommandGroup(replacing: .appTermination) {
Button("GrowthLapse beenden") {
NSApp.terminate(nil)
}
.keyboardShortcut("q", modifiers: .command)
}
}
}
}
final class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(_ notification: Notification) {
NSApp.setActivationPolicy(.regular)
NSApp.activate(ignoringOtherApps: true)
}
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
true
}
}