diff --git a/src/main.rs b/src/main.rs index 76deca2..c0b13ae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,11 +13,12 @@ use std::io::stdout; fn main() -> Result<(), Box> { enable_raw_mode()?; let (width, height) = crossterm::terminal::size()?; - if width < 15 || height < 15 { - disable_raw_mode()?; - println!("Your console is too small."); - return Ok(()); - } + println!("Width: {}, Height: {}", width, height); + // if width < 15 || height < 15 { + // disable_raw_mode()?; + // println!("Your console is too small."); + // return Ok(()); + // } let mut stdout = stdout(); execute!(stdout, EnterAlternateScreen)?; let backend = CrosstermBackend::new(stdout);