Ariver
2026-06-14 04ea16a212104919965081637747c8476d60b33a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Foundation
 
enum AppIdentity {
    static let displayName = "TagLauncher"
    static let bundleIdentifier = "com.taglauncher.app"
    static let applicationSupportDirectoryName = "TagLauncher"
 
    static var applicationSupportDirectory: URL {
        FileManager.default.homeDirectoryForCurrentUser
            .appendingPathComponent("Library/Application Support/\(applicationSupportDirectoryName)")
    }
 
    static let statusItemAutosaveName = "\(bundleIdentifier).statusItem"
    static let launchAgentLabel = bundleIdentifier
    static let categorySchemeBatchQueueLabel = "\(bundleIdentifier).category-scheme-batch"
}