We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5d1188 commit a983015Copy full SHA for a983015
1 file changed
packages/opencode/src/cli/ui.ts
@@ -2,14 +2,10 @@ import z from "zod"
2
import { EOL } from "os"
3
import { NamedError } from "@opencode-ai/util/error"
4
import { renderMarkdown, type MarkdownTheme } from "./markdown-renderer"
5
+import { logo as shuvLogo } from "./logo"
6
7
export namespace UI {
- const LOGO = [
8
- [` `, ` ▄ `],
9
- [`█▀▀█ █▀▀█ █▀▀█ █▀▀▄ `, `█▀▀▀ █▀▀█ █▀▀█ █▀▀█`],
10
- [`█░░█ █░░█ █▀▀▀ █░░█ `, `█░░░ █░░█ █░░█ █▀▀▀`],
11
- [`▀▀▀▀ █▀▀▀ ▀▀▀▀ ▀ ▀ `, `▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀`],
12
- ]
+ const LOGO = shuvLogo.left.map((l, i) => [l, shuvLogo.right[i]])
13
14
export const CancelledError = NamedError.create("UICancelledError", z.void())
15
0 commit comments