yattee/macOS/AppDelegate.swift

13 lines
301 B
Swift

import AppKit
import Foundation
final class AppDelegate: NSObject, NSApplicationDelegate {
func applicationShouldTerminateAfterLastWindowClosed(_: NSApplication) -> Bool {
true
}
func applicationWillTerminate(_: Notification) {
ScreenSaverManager.shared.enable()
}
}