7 lines
96 B
Bash
7 lines
96 B
Bash
|
tsize()
|
||
|
{
|
||
|
local width=$(tput cols)
|
||
|
local height=$(tput lines)
|
||
|
echo "${width}x${height}"
|
||
|
}
|