@@ -1346,7 +1346,7 @@ struct ProgramaCLIPathInstaller {
13461346 case .destinationIsDirectory(let path):
13471347 return "\(path) is a directory. Remove or rename it and try again."
13481348 case .installVerificationFailed(let path):
1349- return "Installed symlink at \(path) did not point to the bundled cmux CLI."
1349+ return "Installed symlink at \(path) did not point to the bundled programa CLI."
13501350 case .uninstallVerificationFailed(let path):
13511351 return "Failed to remove \(path)."
13521352 case .privilegedCommandFailed(let message):
@@ -1367,7 +1367,7 @@ struct ProgramaCLIPathInstaller {
13671367
13681368 init(
13691369 fileManager: FileManager = .default,
1370- destinationURL: URL = URL(fileURLWithPath: "/usr/local/bin/cmux "),
1370+ destinationURL: URL = URL(fileURLWithPath: "/usr/local/bin/programa "),
13711371 bundledCLIURLProvider: @escaping () -> URL? = {
13721372 ProgramaCLIPathInstaller.defaultBundledCLIURL()
13731373 },
@@ -1543,12 +1543,12 @@ struct ProgramaCLIPathInstaller {
15431543 }
15441544
15451545 private static func defaultBundledCLIURL(bundle: Bundle = .main) -> URL? {
1546- bundle.resourceURL?.appendingPathComponent("bin/cmux ", isDirectory: false)
1546+ bundle.resourceURL?.appendingPathComponent("bin/programa ", isDirectory: false)
15471547 }
15481548
15491549 private static func defaultBundledCLIExpectedPath(bundle: Bundle = .main) -> String {
15501550 bundle.bundleURL
1551- .appendingPathComponent("Contents/Resources/bin/cmux ", isDirectory: false)
1551+ .appendingPathComponent("Contents/Resources/bin/programa ", isDirectory: false)
15521552 .path
15531553 }
15541554
@@ -7336,7 +7336,7 @@ final class AppDelegate: NSObject, NSApplicationDelegate, UNUserNotificationCent
73367336 }
73377337
73387338 func sendWelcomeCommandWhenReady(to workspace: Workspace, markShownOnSend: Bool = false) {
7339- sendTextWhenReady("cmux welcome\n", to: workspace) {
7339+ sendTextWhenReady("programa welcome\n", to: workspace) {
73407340 if markShownOnSend {
73417341 UserDefaults.standard.set(true, forKey: WelcomeSettings.shownKey)
73427342 }
@@ -12864,7 +12864,7 @@ final class AppDelegate: NSObject, NSApplicationDelegate, UNUserNotificationCent
1286412864 private func observeDuplicateLaunches() {
1286512865 guard let bundleId = Bundle.main.bundleIdentifier else { return }
1286612866 let embeddedCLIURL = Bundle.main.bundleURL
12867- .appendingPathComponent("Contents/Resources/bin/cmux ", isDirectory: false)
12867+ .appendingPathComponent("Contents/Resources/bin/programa ", isDirectory: false)
1286812868 .standardizedFileURL
1286912869 .resolvingSymlinksInPath()
1287012870 let currentPid = ProcessInfo.processInfo.processIdentifier
@@ -13491,7 +13491,7 @@ final class AppDelegate: NSObject, NSApplicationDelegate, UNUserNotificationCent
1349113491@MainActor
1349213492final class MenuBarExtraController: NSObject, NSMenuDelegate {
1349313493 private let statusItem: NSStatusItem
13494- private let menu = NSMenu(title: "cmux ")
13494+ private let menu = NSMenu(title: "Programa ")
1349513495 private let notificationStore: TerminalNotificationStore
1349613496 private let onShowNotifications: () -> Void
1349713497 private let onOpenNotification: (TerminalNotification) -> Void
@@ -13543,7 +13543,7 @@ final class MenuBarExtraController: NSObject, NSMenuDelegate {
1354313543 button.imagePosition = .imageOnly
1354413544 button.imageScaling = .scaleProportionallyDown
1354513545 button.image = MenuBarIconRenderer.makeImage(unreadCount: 0)
13546- button.toolTip = "cmux "
13546+ button.toolTip = "Programa "
1354713547 }
1354813548
1354913549 notificationsCancellable = notificationStore.$notifications
@@ -13647,7 +13647,7 @@ final class MenuBarExtraController: NSObject, NSMenuDelegate {
1364713647 if let button = statusItem.button {
1364813648 button.image = MenuBarIconRenderer.makeImage(unreadCount: displayedUnreadCount)
1364913649 button.toolTip = displayedUnreadCount == 0
13650- ? "cmux "
13650+ ? "Programa "
1365113651 : displayedUnreadCount == 1
1365213652 ? "Programa: " + String(localized: "statusMenu.tooltip.unread.one", defaultValue: "1 unread notification")
1365313653 : "Programa: " + String(localized: "statusMenu.tooltip.unread.other", defaultValue: "\(displayedUnreadCount) unread notifications")
0 commit comments