aboutsummaryrefslogtreecommitdiff
path: root/Carthage/Checkouts/LaunchAtLogin/LaunchAtLoginHelper/main.swift
diff options
context:
space:
mode:
authorFivePixels <o5pxels@gmail.com>2019-03-13 02:32:48 -0500
committerFivePixels <o5pxels@gmail.com>2019-03-13 02:32:48 -0500
commit44fd4eedbbba9d28efd301c554f611c08f26a3ca (patch)
treefc778dd663994dff3123469a7630f0d9d48e9d47 /Carthage/Checkouts/LaunchAtLogin/LaunchAtLoginHelper/main.swift
parent7799cba77fd833817d16465c5be96ff7fcd46451 (diff)
downloaddwa140shortcut-44fd4eedbbba9d28efd301c554f611c08f26a3ca.tar.xz
dwa140shortcut-44fd4eedbbba9d28efd301c554f611c08f26a3ca.zip
Removed Carthage
Diffstat (limited to 'Carthage/Checkouts/LaunchAtLogin/LaunchAtLoginHelper/main.swift')
-rw-r--r--Carthage/Checkouts/LaunchAtLogin/LaunchAtLoginHelper/main.swift25
1 files changed, 0 insertions, 25 deletions
diff --git a/Carthage/Checkouts/LaunchAtLogin/LaunchAtLoginHelper/main.swift b/Carthage/Checkouts/LaunchAtLogin/LaunchAtLoginHelper/main.swift
deleted file mode 100644
index ad7fd4f..0000000
--- a/Carthage/Checkouts/LaunchAtLogin/LaunchAtLoginHelper/main.swift
+++ /dev/null
@@ -1,25 +0,0 @@
-import Cocoa
-
-final class AppDelegate: NSObject, NSApplicationDelegate {
- func applicationDidFinishLaunching(_ notification: Notification) {
- let bundleId = Bundle.main.bundleIdentifier!
- // TODO: Make this more strict by only replacing at the end
- let mainBundleId = bundleId.replacingOccurrences(of: "-LaunchAtLoginHelper", with: "")
-
- // Ensure the app is not already running
- guard NSRunningApplication.runningApplications(withBundleIdentifier: mainBundleId).isEmpty else {
- NSApp.terminate(nil)
- return
- }
-
- let pathComponents = (Bundle.main.bundlePath as NSString).pathComponents
- let mainPath = NSString.path(withComponents: Array(pathComponents[0...(pathComponents.count - 5)]))
- NSWorkspace.shared.launchApplication(mainPath)
- NSApp.terminate(nil)
- }
-}
-
-private let app = NSApplication.shared
-private let delegate = AppDelegate()
-app.delegate = delegate
-app.run()