diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-06 18:08:19 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-06 18:08:19 +0200 |
| commit | 99a6cf4787fd92a25a53acbc9c0bae8bca87cc96 (patch) | |
| tree | 0c6f6506e944a0eed0fcefa7b9394681c5f178da /internal/tui/dashboard/processes.go | |
| parent | 1561987330cb898f5ff64383a9c78e7e6559f118 (diff) | |
feat(tui): add dashboard bubble viz and expand help shortcuts
Diffstat (limited to 'internal/tui/dashboard/processes.go')
| -rw-r--r-- | internal/tui/dashboard/processes.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/dashboard/processes.go b/internal/tui/dashboard/processes.go index a5e8d79..74a185f 100644 --- a/internal/tui/dashboard/processes.go +++ b/internal/tui/dashboard/processes.go @@ -43,7 +43,7 @@ func renderProcessesWithOffset(snap *statsengine.Snapshot, width, height, offset cursor := clampOffset(offset, len(rows)) tbl.SetCursor(cursor) - out := tbl.View() + fmt.Sprintf("\nRow %d/%d", cursor+1, len(rows)) + out := tbl.View() + fmt.Sprintf("\nRow %d/%d [v:bubbles] [b:metric]", cursor+1, len(rows)) if pidFilter > 0 { out += "\n" + "Note: this tab is most useful with All PIDs." } |
