From 6834194b9e16a7b5ee68b539ceb1a99b8f1ff90b Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Thu, 2 May 2024 02:53:51 -0400 Subject: Added ratatui integration + logger redirect --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a8e1687..64ce199 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,9 @@ Features Include: - Post-process dithers colors to pure black and white, which are then printed as braille characters to the terminal - Responsiveness to terminal window resizing - `TerminalInput` resource which keeps track of pressed & released keys -- Keyboard input enhancements using kitty protocol - -Future Goals: -- Find a way to integrate into a TUI library like ratatui for more interaction options. -- Move kitty enhancements to a feature maybe +- `TerminalUI` resource for rendering ratatui TUI widgets +- `TerminalWidget` trait for creating custom TUI widget components +- Logging redirected to `output.log` ## Screenshots ![](./doc/screenshot.png) @@ -42,7 +40,7 @@ use grex_terminal_display; fn main() { App::new() .add_plugins(( - DefaultPlugins.build().disable::(), + DefaultPlugins.build().disable::().disable::, ScheduleRunnerPlugin::run_loop(Duration::from_secs_f32(1.0 / 60.0)), grex_terminal_display::TerminalDisplayPlugin, )) -- cgit v1.2.3