Update footer key color to white and remove banner art
Seto Elkahfi committed
Apr 14, 2026 at 18:33 UTC
339f7178e3d833add906e8c9cdd5e0b59d29eebf
2 files changed
+2
-28
src/chat.rs
+1
-1
index c7bab80..79ecbf9 100644
--- a/src/chat.rs
+++ b/src/chat.rs
@@ -394,7 +394,7 @@ fn render_footer(frame: &mut Frame, app: &App, area: ratatui::layout::Rect) {
spans.push(Span::styled(
format!(" {key} "),
Style::default()
- .fg(Color::Black)
+ .fg(Color::White)
.bg(Color::DarkGray)
.add_modifier(Modifier::BOLD),
));
src/main.rs
+1
-27
index b2e6711..346a17f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -213,36 +213,11 @@ impl Agent for SiGitAgent {
}
}
-// ── Banner ───────────────────────────────────────────────────────────────────
-
-fn print_banner() {
- const BANNER: &str = r#"
-77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777
-77777777322222222222222222222222222222223777389969902208431358831999699051111177777777777777
-1111111125555555555555555555555511113222311159 5002 088 3081771691111111111111
-1111111111111111111111111111131136841 1482853332007 05 9043332891 400811111111111
-1111111111111111111111111111111201 109 304 40 00 79 100041111111111
-333333255555555555555555555552392 102 503 90 7000000005 903 0000023333333333
-333333245454545454545454545433381 7600000 302 61 780 109 20009533333333333
-3333333333333333333333333333333402 7001 08 761 202 902 90003333333333333
-2222255555555555555555555555250899901 49 304 403 08 108 300042222222222222
-2222222222222222222222222222269 106 03 901 06 505 402 000052222222222222
-2222255555555555555555555555299 708 1002 80 00 90852222222222222
-55555555555555555555555555555560953258000866660000051140866908666600008966900065555555555555
-88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888
-
- siGit Code v%VERSION%
-"#;
-
- let art = BANNER.replace("%VERSION%", env!("CARGO_PKG_VERSION"));
- eprintln!("{art}");
-}
-
// ── Interactive mode ─────────────────────────────────────────────────────────
/// Load the model, then hand off to the ratatui chat TUI.
async fn run_interactive() -> anyhow::Result<()> {
- println!(" Loading model...");
+ println!(" Loading siGit...");
let engine = ChatEngine::new();
let config = GgufModelConfig::platform_default();
@@ -323,7 +298,6 @@ async fn main() -> anyhow::Result<()> {
if std::io::stdin().is_terminal() {
// Interactive mode — full-screen chat TUI.
- print_banner();
run_interactive().await
} else {
// Editor spawned us — speak ACP over stdio.