Skip to content

Commit a983015

Browse files
committed
fix: replace opencode ASCII logo with shuvcode branding in CLI ui
1 parent e5d1188 commit a983015

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

  • packages/opencode/src/cli

packages/opencode/src/cli/ui.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ import z from "zod"
22
import { EOL } from "os"
33
import { NamedError } from "@opencode-ai/util/error"
44
import { renderMarkdown, type MarkdownTheme } from "./markdown-renderer"
5+
import { logo as shuvLogo } from "./logo"
56

67
export namespace UI {
7-
const LOGO = [
8-
[`  `, ` ▄ `],
9-
[`█▀▀█ █▀▀█ █▀▀█ █▀▀▄ `, `█▀▀▀ █▀▀█ █▀▀█ █▀▀█`],
10-
[`█░░█ █░░█ █▀▀▀ █░░█ `, `█░░░ █░░█ █░░█ █▀▀▀`],
11-
[`▀▀▀▀ █▀▀▀ ▀▀▀▀ ▀ ▀ `, `▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀`],
12-
]
8+
const LOGO = shuvLogo.left.map((l, i) => [l, shuvLogo.right[i]])
139

1410
export const CancelledError = NamedError.create("UICancelledError", z.void())
1511

0 commit comments

Comments
 (0)