24 releases

0.4.1 Nov 29, 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

#28 in Command-line interface

Download history 612780/week @ 2024-10-22 751921/week @ 2024-10-29 778983/week @ 2024-11-05 811768/week @ 2024-11-12 797684/week @ 2024-11-19 660686/week @ 2024-11-26 790910/week @ 2024-12-03 858961/week @ 2024-12-10 740080/week @ 2024-12-17 456465/week @ 2024-12-24 566279/week @ 2024-12-31 936140/week @ 2025-01-07 867647/week @ 2025-01-14 818503/week @ 2025-01-21 829660/week @ 2025-01-28 781563/week @ 2025-02-04

3,468,691 downloads per month
Used in 2,428 crates (279 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
~134K SLoC