summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdi Yeroslav <[email protected]>2025-11-04 00:18:38 +0200
committerGitHub <[email protected]>2025-11-03 16:18:38 -0600
commit3ac82227f1cf53bd4211562c72a982c2358ce48f (patch)
tree3a7f39fc6608c2499edd074b6627618ca4a5f496
parentc1f9249c84368ad0c16c68e44db3df0d3ff2b7b0 (diff)
downloadopencode-3ac82227f1cf53bd4211562c72a982c2358ce48f.tar.gz
opencode-3ac82227f1cf53bd4211562c72a982c2358ce48f.zip
fix: update logo (#3833)
-rw-r--r--packages/opencode/src/cli/ui.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/opencode/src/cli/ui.ts b/packages/opencode/src/cli/ui.ts
index 361e45255..43760a65a 100644
--- a/packages/opencode/src/cli/ui.ts
+++ b/packages/opencode/src/cli/ui.ts
@@ -4,9 +4,10 @@ import { NamedError } from "../util/error"
export namespace UI {
const LOGO = [
- [`█▀▀█ █▀▀█ █▀▀ █▀▀▄ `, `█▀▀ █▀▀█ █▀▀▄ █▀▀`],
- [`█░░█ █░░█ █▀▀ █░░█ `, `█░░ █░░█ █░░█ █▀▀`],
- [`▀▀▀▀ █▀▀▀ ▀▀▀ ▀ ▀ `, `▀▀▀ ▀▀▀▀ ▀▀▀ ▀▀▀`],
+ [`  `, ` ▄ `],
+ [`█▀▀█ █▀▀█ █▀▀█ █▀▀▄ `, `█▀▀▀ █▀▀█ █▀▀█ █▀▀█`],
+ [`█░░█ █░░█ █▀▀▀ █░░█ `, `█░░░ █░░█ █░░█ █▀▀▀`],
+ [`▀▀▀▀ █▀▀▀ ▀▀▀▀ ▀ ▀ `, `▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀`],
]
export const CancelledError = NamedError.create("UICancelledError", z.void())