23 releases

0.4.0 Sep 25, 2024
0.3.0 Sep 15, 2023
0.2.6 Apr 3, 2023
0.2.5 Feb 14, 2023
0.1.1 Aug 27, 2015

#33 in Command-line interface

Download history 485710/week @ 2024-07-19 495466/week @ 2024-07-26 475373/week @ 2024-08-02 501164/week @ 2024-08-09 518718/week @ 2024-08-16 504458/week @ 2024-08-23 484097/week @ 2024-08-30 524094/week @ 2024-09-06 495818/week @ 2024-09-13 557584/week @ 2024-09-20 564630/week @ 2024-09-27 628627/week @ 2024-10-04 586980/week @ 2024-10-11 621071/week @ 2024-10-18 687969/week @ 2024-10-25 635302/week @ 2024-11-01

2,638,494 downloads per month
Used in 2,245 crates (264 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

~1–11MB
~137K SLoC