Rename to cmux and add About panel

This commit is contained in:
Lawrence Chen 2026-01-26 03:05:03 -08:00
parent f6034a5979
commit 8320d5805a
18 changed files with 164 additions and 125 deletions

View file

@ -2,19 +2,19 @@
import PackageDescription
let package = Package(
name: "GhosttyTabs",
name: "cmux",
platforms: [
.macOS(.v13)
],
products: [
.executable(name: "GhosttyTabs", targets: ["GhosttyTabs"])
.executable(name: "cmux", targets: ["cmux"])
],
dependencies: [
.package(url: "https://github.com/migueldeicaza/SwiftTerm.git", from: "1.2.0")
],
targets: [
.executableTarget(
name: "GhosttyTabs",
name: "cmux",
dependencies: ["SwiftTerm"],
path: "Sources"
)