Files
ghostty/macos/Sources/Features/Custom App Icon/AppIcon.swift
Lukas c7a73076e9 macOS: fix App Icon update in Finders
Looks like  `NSWorkspace.shared.setIcon` can only be called from the main App, DockTilePlugin is sandboxed and doesn't have the permission to `file-write-finderinfo`.

It works fine in debug, but not in release. This fixes #11489, #11290
2026-04-20 12:56:55 +02:00

110 lines
3.3 KiB
Swift

import AppKit
import System
/// The icon style for the Ghostty App.
enum AppIcon: Equatable, Codable, Sendable {
case official
case blueprint
case chalkboard
case glass
case holographic
case microchip
case paper
case retro
case xray
/// Save full image data to avoid sandboxing issues
case custom(_ iconFile: Data)
case customStyle(_ icon: ColorizedGhosttyIcon)
#if !DOCK_TILE_PLUGIN
init?(config: Ghostty.Config) {
switch config.macosIcon {
case .official:
return nil
case .blueprint:
self = .blueprint
case .chalkboard:
self = .chalkboard
case .glass:
self = .glass
case .holographic:
self = .holographic
case .microchip:
self = .microchip
case .paper:
self = .paper
case .retro:
self = .retro
case .xray:
self = .xray
case .custom:
if let data = try? Data(contentsOf: URL(filePath: config.macosCustomIcon, relativeTo: nil)) {
self = .custom(data)
} else {
return nil
}
case .customStyle:
// Discard saved icon name
// if no valid colours were found
guard
let ghostColor = config.macosIconGhostColor,
let screenColors = config.macosIconScreenColor
else {
return nil
}
self = .customStyle(ColorizedGhosttyIcon(screenColors: screenColors, ghostColor: ghostColor, frame: config.macosIconFrame))
}
}
#endif
func image(in bundle: Bundle) -> NSImage? {
switch self {
case .official:
return nil
case .blueprint:
return bundle.image(forResource: "BlueprintImage")!
case .chalkboard:
return bundle.image(forResource: "ChalkboardImage")!
case .glass:
return bundle.image(forResource: "GlassImage")!
case .holographic:
return bundle.image(forResource: "HolographicImage")!
case .microchip:
return bundle.image(forResource: "MicrochipImage")!
case .paper:
return bundle.image(forResource: "PaperImage")!
case .retro:
return bundle.image(forResource: "RetroImage")!
case .xray:
return bundle.image(forResource: "XrayImage")!
case let .custom(file):
return NSImage(data: file)
case let .customStyle(customIcon):
return customIcon.makeImage(in: bundle)
}
}
}
#if !DOCK_TILE_PLUGIN
/// Making sure that `NSWorkspace.shared.setIcon` executes on only one thread at a time
actor AppIconUpdater {
func update(icon: AppIcon?) {
UserDefaults.ghostty.appIcon = icon
// Notify DockTilePlugin to update dock icon
DistributedNotificationCenter.default()
.postNotificationName(
.ghosttyIconDidChange,
object: nil,
userInfo: nil,
deliverImmediately: true,
)
NSWorkspace.shared.setIcon(
icon?.image(in: .main),
forFile: Bundle.main.bundlePath,
)
NSWorkspace.shared.noteFileSystemChanged(Bundle.main.bundlePath)
}
}
#endif