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

#30 in Command-line interface

Download history 963328/week @ 2025-01-08 826427/week @ 2025-01-15 821788/week @ 2025-01-22 844400/week @ 2025-01-29 935027/week @ 2025-02-05 841059/week @ 2025-02-12 947021/week @ 2025-02-19 919407/week @ 2025-02-26 986054/week @ 2025-03-05 1028092/week @ 2025-03-12 991609/week @ 2025-03-19 958881/week @ 2025-03-26 1005690/week @ 2025-04-02 1003607/week @ 2025-04-09 966046/week @ 2025-04-16 976291/week @ 2025-04-23

4,130,689 downloads per month
Used in 2,545 crates (291 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