5 lines
163 B
Perl
5 lines
163 B
Perl
|
use Term::ReadKey;
|
||
|
|
||
|
($widthchars, $heightchars, $widthpixels, $heightpixels) = GetTerminalSize();
|
||
|
|
||
|
print "Your screen is $heightpixels x $widthpixels pixels.";
|