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

@ -1,18 +1,18 @@
#!/bin/bash
# Rebuild and restart GhosttyTabs app
# Rebuild and restart cmux app
set -e
cd "$(dirname "$0")/.."
# Kill existing app if running
pkill -9 -f "GhosttyTabs" 2>/dev/null || true
pkill -9 -f "cmux" 2>/dev/null || true
# Build
swift build
# Copy to app bundle
cp .build/debug/GhosttyTabs .build/debug/GhosttyTabs.app/Contents/MacOS/
cp .build/debug/cmux .build/debug/cmux.app/Contents/MacOS/
# Open the app
open .build/debug/GhosttyTabs.app
open .build/debug/cmux.app