next test build

This commit is contained in:
Micha
2025-11-21 13:56:45 +01:00
parent db58a5c048
commit db1f15f981
4 changed files with 27 additions and 9 deletions

View File

@@ -6,9 +6,20 @@
//
import SwiftUI
#if os(macOS)
import AppKit
#endif
@main
struct iKeyMonApp: App {
init() {
#if os(macOS)
if let customIcon = NSImage(named: "AppIcon") {
NSApplication.shared.applicationIconImage = customIcon
}
#endif
}
var body: some Scene {
WindowGroup {
MainView()