mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-09-07 13:00:57 +00:00
* WIP * WIP * WIP * Tweaks. * WIP * WIP * WIP * WIP * WIP * Cleanup * WIP * WIP * WIP * WIP * WIP * WIP * WIP * REmove setup menu item * WIP * . * . * . * Cleaup.
13 lines
320 B
Swift
13 lines
320 B
Swift
import Foundation
|
|
|
|
extension URL {
|
|
|
|
static var agentHomeURL: URL {
|
|
URL(fileURLWithPath: URL.homeDirectory.path().replacingOccurrences(of: Bundle.hostBundleID, with: Bundle.agentBundleID))
|
|
}
|
|
|
|
static var socketPath: String {
|
|
URL.agentHomeURL.appendingPathComponent("socket.ssh").path()
|
|
}
|
|
}
|