Add spacing

This commit is contained in:
JEEVITHA KANNAN K S 2024-09-30 22:33:51 +05:30
parent a9a678fc11
commit 6c2aaf339f
No known key found for this signature in database
GPG Key ID: 5904C34A2F7CE333
3 changed files with 6 additions and 6 deletions

View File

@ -73,7 +73,7 @@ impl FloatContent for RunningCommand {
title_line.push_span( title_line.push_span(
Span::default() Span::default()
.content(" press <ENTER> to close this window ") .content(" Press <ENTER> to close this window ")
.style(Style::default()), .style(Style::default()),
); );

View File

@ -21,7 +21,7 @@ use ratatui::{
const MIN_WIDTH: u16 = 77; const MIN_WIDTH: u16 = 77;
const MIN_HEIGHT: u16 = 19; const MIN_HEIGHT: u16 = 19;
const TITLE: &str = concat!("Linux Toolbox - ", env!("BUILD_DATE")); const TITLE: &str = concat!(" Linux Toolbox - ", env!("BUILD_DATE"), " ");
const ACTIONS_GUIDE: &str = "List of important tasks performed by commands' names: const ACTIONS_GUIDE: &str = "List of important tasks performed by commands' names:
D - disk modifications (ex. partitioning) (privileged) D - disk modifications (ex. partitioning) (privileged)
@ -694,5 +694,5 @@ fn get_random_tip() -> &'static str {
let mut rng = rand::thread_rng(); let mut rng = rand::thread_rng();
let random_index = rng.gen_range(0..tips.len()); let random_index = rng.gen_range(0..tips.len());
tips[random_index] Box::leak(format!(" {} ", tips[random_index]).into_boxed_str())
} }