small style changes

This commit is contained in:
Lobo 2025-10-12 20:40:01 -03:00
parent 7d28b3b3e0
commit 080a8d5e47
3 changed files with 9 additions and 3 deletions

View file

@ -43,7 +43,7 @@ func (app *App) Redraw() {
delimiterStyle := vaxis.Style{Attribute: vaxis.AttrDim}
if app.conn != nil {
titleString := fmt.Sprintf("%s:%s", app.host, app.port)
titleString := fmt.Sprintf("nanite (%s:%s)", app.host, app.port)
app.vx.SetTitle(titleString)
rateString := "manual"
@ -53,7 +53,7 @@ func (app *App) Redraw() {
segments := []vaxis.Segment{
{Text: "• "},
{Text: titleString, Style: titleStyle},
{Text: app.host, Style: titleStyle},
{Text: " │ ", Style: delimiterStyle},
{Text: fmt.Sprintf("↻ %s", rateString)},
}