25 releases

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

#32 in Command-line interface

Download history 460234/week @ 2024-12-23 513204/week @ 2024-12-30 900717/week @ 2025-01-06 928347/week @ 2025-01-13 786093/week @ 2025-01-20 827787/week @ 2025-01-27 922827/week @ 2025-02-03 893483/week @ 2025-02-10 870368/week @ 2025-02-17 936778/week @ 2025-02-24 942983/week @ 2025-03-03 1026437/week @ 2025-03-10 1007981/week @ 2025-03-17 968013/week @ 2025-03-24 982389/week @ 2025-03-31 1037928/week @ 2025-04-07

4,056,883 downloads per month
Used in 2,528 crates (287 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
~145K SLoC