From 08649e9fa1a2463b769fe0805d1d0b64cb3ff205 Mon Sep 17 00:00:00 2001 From: pyro Date: Wed, 20 May 2026 13:35:37 -0500 Subject: [PATCH] updated the input box title. --- src/funcs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/funcs.rs b/src/funcs.rs index 7709dcc..126608d 100644 --- a/src/funcs.rs +++ b/src/funcs.rs @@ -123,7 +123,7 @@ pub fn run_tui( let input_paragraph = Paragraph::new(state.curent_intput.as_str()).block( Block::default() .borders(Borders::ALL) - .title(" Execute Command (Press Enter) "), + .title(" What is thy bidding, my master? "), ); f.render_widget(input_paragraph, main_chunks[1]);