mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
Formatting fixes
This commit is contained in:
parent
9403f30157
commit
09569ef921
|
@ -156,7 +156,10 @@ impl CustomList {
|
||||||
// node
|
// node
|
||||||
let list = List::new(items)
|
let list = List::new(items)
|
||||||
.highlight_style(Style::default().reversed())
|
.highlight_style(Style::default().reversed())
|
||||||
.block(Block::default().borders(Borders::ALL).title(format!("Linux Toolbox - {}", chrono::Local::now().format("%Y-%m-%d"))))
|
.block(Block::default().borders(Borders::ALL).title(format!(
|
||||||
|
"Linux Toolbox - {}",
|
||||||
|
chrono::Local::now().format("%Y-%m-%d")
|
||||||
|
)))
|
||||||
.scroll_padding(1);
|
.scroll_padding(1);
|
||||||
|
|
||||||
// Render it
|
// Render it
|
||||||
|
@ -370,4 +373,4 @@ impl CustomList {
|
||||||
fn at_root(&self) -> bool {
|
fn at_root(&self) -> bool {
|
||||||
self.visit_stack.len() == 1
|
self.visit_stack.len() == 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,6 +95,5 @@ fn run<B: Backend>(terminal: &mut Terminal<B>) -> io::Result<()> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@ pub struct RunningCommand {
|
||||||
buffer: Arc<Mutex<Vec<u8>>>,
|
buffer: Arc<Mutex<Vec<u8>>>,
|
||||||
|
|
||||||
/// A handle of the tread where the command is being executed
|
/// A handle of the tread where the command is being executed
|
||||||
command_thread: Option<JoinHandle<ExitStatus>>,
|
command_thread: Option<JoinHandle<ExitStatus>>,
|
||||||
|
|
||||||
/// A handle to kill the running process, it's an option because it can only be used once
|
/// A handle to kill the running process, it's an option because it can only be used once
|
||||||
child_killer: Option<Receiver<Box<dyn ChildKiller + Send + Sync>>>,
|
child_killer: Option<Receiver<Box<dyn ChildKiller + Send + Sync>>>,
|
||||||
|
@ -279,4 +279,4 @@ impl RunningCommand {
|
||||||
// Send the keycodes to the virtual terminal
|
// Send the keycodes to the virtual terminal
|
||||||
let _ = self.writer.write_all(&input_bytes);
|
let _ = self.writer.write_all(&input_bytes);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,9 +31,9 @@ pub const THEMES: [Theme; 2] = [
|
||||||
];
|
];
|
||||||
|
|
||||||
pub fn get_theme() -> &'static Theme {
|
pub fn get_theme() -> &'static Theme {
|
||||||
&THEMES[unsafe { THEME_IDX } ]
|
&THEMES[unsafe { THEME_IDX }]
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_theme(idx: usize){
|
pub fn set_theme(idx: usize) {
|
||||||
unsafe { THEME_IDX = idx };
|
unsafe { THEME_IDX = idx };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user