Ariver
2026-06-26 9c317d89a39d0871f15f8282aec6c7f3dde7768c
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"
}