mirror of
https://github.com/patriceckhart/zot.git
synced 2026-06-26 21:36:31 +02:00
Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b325477870 |
2 changed files with 3 additions and 3 deletions
|
|
@ -340,7 +340,7 @@ func PrintHelp(version string) {
|
||||||
if useColor {
|
if useColor {
|
||||||
headline = th.AccentBar(th.Assistant) + assistant(tui.Bold("i'm zot. yet another coding agent harness."))
|
headline = th.AccentBar(th.Assistant) + assistant(tui.Bold("i'm zot. yet another coding agent harness."))
|
||||||
} else {
|
} else {
|
||||||
headline = "i'm zot. yet another coding agent harness."
|
headline = "zot. yet another coding agent harness."
|
||||||
}
|
}
|
||||||
fmt.Fprintln(os.Stderr, headline)
|
fmt.Fprintln(os.Stderr, headline)
|
||||||
fmt.Fprintln(os.Stderr, muted("ask anything, or type /help inside the tui to see commands."))
|
fmt.Fprintln(os.Stderr, muted("ask anything, or type /help inside the tui to see commands."))
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,9 @@ import "github.com/patriceckhart/zot/packages/tui"
|
||||||
// the moment zot starts. After welcomeVersionDuration the caller
|
// the moment zot starts. After welcomeVersionDuration the caller
|
||||||
// flips showVersion off and the headline reverts to plain text.
|
// flips showVersion off and the headline reverts to plain text.
|
||||||
func welcomeBanner(th tui.Theme, version string, showVersion bool) []string {
|
func welcomeBanner(th tui.Theme, version string, showVersion bool) []string {
|
||||||
text := "i'm zot. yet another coding agent harness."
|
text := "zot. yet another coding agent harness."
|
||||||
if showVersion && version != "" {
|
if showVersion && version != "" {
|
||||||
text = "i'm zot (" + version + "). yet another coding agent harness."
|
text = "zot (" + version + "). yet another coding agent harness."
|
||||||
}
|
}
|
||||||
headline := th.AccentBar(th.Assistant) + th.FG256(th.Assistant, tui.Bold(text))
|
headline := th.AccentBar(th.Assistant) + th.FG256(th.Assistant, tui.Bold(text))
|
||||||
return []string{
|
return []string{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue