Ariver
2026-05-28 b4a1ba5df0f073bf346c3f4407b613bf08d29f08
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"
}