1
0
mirror of https://github.com/yattee/yattee.git synced 2025-04-29 08:20:33 +05:30
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()
}
}