зеркало из https://github.com/mozilla/gecko-dev.git
2.4 KiB
2.4 KiB
term_size
A Rust library to enable getting terminal sizes and dimensions
Usage
First, add the following to your Cargo.toml
:
[dependencies]
term_size = "0.3"
Next, add this to your crate root:
extern crate term_size;
To get the dimensions of your terminal window, simply use the following:
fn main() {
if let Some((w, h)) = term_size::dimensions() {
println!("Width: {}\nHeight: {}", w, h);
} else {
println!("Unable to get term size :(")
}
}
License
Copyright Benjamin Sago, Kevin Knapp, and term_size
contributors.
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
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.