fix: enable text selection, dashboard multi-column layout
All checks were successful
CI / build (push) Successful in 1m44s

- Remove WithMouseCellMotion to allow text selection in terminal
- Dashboard now uses 2-column layout (left: system/tools, right: actions/status)
- More compact dashboard with better space usage

💘 Generated with Crush

Assisted-by: GLM-5.1 via Crush <crush@charm.land>
This commit is contained in:
Augustin
2026-04-20 00:33:12 +02:00
parent 2d6fc64b18
commit 82b281641d
2 changed files with 74 additions and 75 deletions

View File

@@ -108,7 +108,7 @@ func runTUI() {
result := scanner.ScanSystem()
model := tui.NewModel(cfg, result)
p := tea.NewProgram(model, tea.WithAltScreen(), tea.WithMouseCellMotion())
p := tea.NewProgram(model, tea.WithAltScreen())
if _, err := p.Run(); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)