macos: fix iOS builds
parent
f1c68f698b
commit
f178f4419e
|
|
@ -302,6 +302,7 @@ extension Ghostty {
|
||||||
}
|
}
|
||||||
|
|
||||||
var macosCustomIcon: String {
|
var macosCustomIcon: String {
|
||||||
|
#if os(macOS)
|
||||||
let homeDirURL = FileManager.default.homeDirectoryForCurrentUser
|
let homeDirURL = FileManager.default.homeDirectoryForCurrentUser
|
||||||
let ghosttyConfigIconPath = homeDirURL.appendingPathComponent(
|
let ghosttyConfigIconPath = homeDirURL.appendingPathComponent(
|
||||||
".config/ghostty/Ghostty.icns",
|
".config/ghostty/Ghostty.icns",
|
||||||
|
|
@ -313,6 +314,9 @@ extension Ghostty {
|
||||||
guard ghostty_config_get(config, &v, key, UInt(key.count)) else { return defaultValue }
|
guard ghostty_config_get(config, &v, key, UInt(key.count)) else { return defaultValue }
|
||||||
guard let ptr = v else { return defaultValue }
|
guard let ptr = v else { return defaultValue }
|
||||||
return String(cString: ptr)
|
return String(cString: ptr)
|
||||||
|
#else
|
||||||
|
return ""
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
var macosIconFrame: MacOSIconFrame {
|
var macosIconFrame: MacOSIconFrame {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue