Replies: 3 comments 2 replies
-
|
Hi! There is no setting right now, hidden or otherwise. But that's a good point, I'll add a setting for it in a future release. |
Beta Was this translation helpful? Give feedback.
-
|
Is there a configuration now? I sync my desktop to several computers. Thank you! |
Beta Was this translation helpful? Give feedback.
-
|
Hi @insidegui, I took a look at the codebase and this seems like a pretty contained change, scoped entirely to the guest app. Wanted to share a proposed implementation in case it's helpful. The core issue is that Proposed approach (2 files changed, guest-side only):
private static let mountPointKey = "SharedFoldersMountPoint"
@Published var mountPointURL: URL {
didSet { UserDefaults.standard.set(mountPointURL.path, forKey: Self.mountPointKey) }
}
init() {
if let stored = UserDefaults.standard.string(forKey: Self.mountPointKey) {
self.mountPointURL = URL(fileURLWithPath: stored)
} else {
self.mountPointURL = Self.defaultMountPointURL
}
}Then replace all references to
No host-side changes needed. The virtiofs share name ( Default behavior stays exactly the same for existing users. Happy to put together a PR if you're interested. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @insidegui - is there a hidden setting (or could there be an overt setting) to change the
VirtualBuddySharedmount point? I'd much prefer to use/Volumesthan~/Desktop. Thanks!Beta Was this translation helpful? Give feedback.
All reactions