macos: new terminal intent

This commit is contained in:
Mitchell Hashimoto
2025-06-17 20:59:12 -07:00
parent f55c77bc81
commit 7ae5018fe8
5 changed files with 108 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
enum GhosttyIntentError: Error, CustomLocalizedStringResourceConvertible {
case appUnavailable
var localizedStringResource: LocalizedStringResource {
switch self {
case .appUnavailable: return "The Ghostty app isn't properly initialized."
}
}
}