use Term::Size::Perl; ($columns, $rows) = Term::Size::Perl::chars *STDOUT{IO}; ($x, $y) = Term::Size::Perl::pixels;
($columns, $rows) = chars($h); $columns = chars($h);
"chars" returns the terminal size in units of characters corresponding to the given filehandle $h. If the argument is omitted, *STDIN{IO} is used. In scalar context, it returns the terminal width.
($x, $y) = pixels($h); $x = pixels($h);
"pixels" returns the terminal size in units of pixels corresponding to the given filehandle $h. If the argument is omitted, *STDIN{IO} is used. In scalar context, it returns the terminal width.
Many systems with character-only terminals will return "(0, 0)".
Term::Size
Term::Size::Win32
Term::Size::ReadKey
Please reports bugs via GitHub, <https://github.com/aferreira/cpan-Term-Size-Perl/issues>. When reporting bugs, it may be helpful to attach the Params.pm generated by the probe at build time.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.