terminal-size

Documention

Rust library to getting the size of your terminal.

Works on Linux and Windows, but needs testing on other platforms

```rust use terminalsize::{Width, Height, terminalsize};

let size = terminal_size(); if let Some((Width(w), Height(h))) = size { println!("Your terminal is {} cols wide and {} lines tall", w, h); } else { println!("Unable to get terminal size"); } ```