mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
44 lines
1.4 KiB
Swift
44 lines
1.4 KiB
Swift
//
|
|
// AppDelegate.swift
|
|
// StatsLauncher
|
|
//
|
|
// Created by Serhiy Mytrovtsiy on 10/06/2019.
|
|
// Copyright © 2019 Serhiy Mytrovtsiy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
extension Notification.Name {
|
|
static let killLauncher = Notification.Name("killLauncher")
|
|
}
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
|
let mainAppIdentifier = "eu.exelban.Stats"
|
|
let runningApps = NSWorkspace.shared.runningApplications
|
|
let isRunning = !runningApps.filter { $0.bundleIdentifier == mainAppIdentifier }.isEmpty
|
|
|
|
if !isRunning {
|
|
DistributedNotificationCenter.default().addObserver(self,
|
|
selector: #selector(self.terminate),
|
|
name: .killLauncher,
|
|
object: mainAppIdentifier)
|
|
var path = Bundle.main.bundlePath as NSString
|
|
for _ in 1...4 {
|
|
path = path.deletingLastPathComponent as NSString
|
|
}
|
|
NSWorkspace.shared.launchApplication(path as String)
|
|
}
|
|
else {
|
|
self.terminate()
|
|
}
|
|
}
|
|
|
|
@objc func terminate() {
|
|
NSApp.terminate(nil)
|
|
}
|
|
}
|
|
|