gitextract_kb9i7998/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE.md ├── README.md ├── asset/ │ ├── bindata.go │ ├── file.go │ └── player.go ├── component/ │ ├── alert.go │ ├── asciibox/ │ │ └── asciibox.go │ ├── barchart/ │ │ └── barchart.go │ ├── block.go │ ├── component.go │ ├── gauge/ │ │ ├── gauge.go │ │ └── gauge_test.go │ ├── layout/ │ │ └── layout.go │ ├── menu.go │ ├── runchart/ │ │ ├── grid.go │ │ ├── legend.go │ │ └── runchart.go │ ├── sparkline/ │ │ ├── sparkline.go │ │ └── sparkline_test.go │ ├── statusbar.go │ ├── textbox/ │ │ └── textbox.go │ └── util/ │ ├── format.go │ ├── format_test.go │ ├── geometry.go │ ├── geometry_test.go │ ├── math.go │ ├── parse.go │ └── parse_test.go ├── config/ │ ├── arrangement.go │ ├── component.go │ ├── config.go │ ├── default.go │ ├── options.go │ └── validator.go ├── console/ │ ├── console.go │ ├── palette.go │ ├── palette_test.go │ ├── signal.go │ └── symbol.go ├── data/ │ ├── consumer.go │ ├── consumer_test.go │ ├── error.go │ ├── int.go │ ├── int_basic.go │ ├── int_pty.go │ ├── int_pty_windows.go │ ├── item.go │ ├── sampler.go │ └── trigger.go ├── event/ │ └── handler.go ├── example.yml ├── go.mod ├── go.sum └── main.go