Files
orca/src/shared/app-identity.ts
T
Neil 2ead67c650 Label macOS dev Dock instances by branch (#2068)
* fix: label macOS dev Dock instances

* fix: keep dev badge visible in Dock labels

* chore: clean up dev identity plumbing

* feat: add stable-name dev command
2026-05-15 22:46:13 -07:00

10 lines
209 B
TypeScript

export type AppIdentity = {
name: string
isDev: boolean
devLabel: string | null
devBranch: string | null
devWorktreeName: string | null
devRepoRoot: string | null
dockBadgeLabel: string | null
}