25 releases

new 0.4.2 Mar 8, 2025
0.4.1 Nov 29, 2024
0.4.0 Sep 25, 2024
0.3.0 Sep 15, 2023
0.1.1 Aug 27, 2015

#29 in Command-line interface

Download history 751200/week @ 2024-11-21 696052/week @ 2024-11-28 820444/week @ 2024-12-05 833601/week @ 2024-12-12 568880/week @ 2024-12-19 452286/week @ 2024-12-26 750175/week @ 2025-01-02 977444/week @ 2025-01-09 806929/week @ 2025-01-16 829087/week @ 2025-01-23 868198/week @ 2025-01-30 925909/week @ 2025-02-06 835026/week @ 2025-02-13 966299/week @ 2025-02-20 915303/week @ 2025-02-27 818768/week @ 2025-03-06

3,699,937 downloads per month
Used in 2,487 crates (281 directly)

MIT/Apache

12KB
168 lines

terminal-size

Documentation

Rust library for getting the size of your terminal.

Works on Linux, macOS, Windows, and illumos.

use terminal_size::{Width, Height, terminal_size};

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");
}

Minimum Rust Version

This crate requires a minimum Rust version of 1.63.0 (2022-08-11).

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2–11MB
~143K SLoC