6 lines
189 B
Text
6 lines
189 B
Text
local tmp = "_pluto_.tmp"
|
|
os.execute($"stty size > {tmp}")
|
|
local res = io.contents(tmp):strip()
|
|
io.remove(tmp)
|
|
local [h, w] = res:split(" ")
|
|
print($"Terminal width = {w} and height = {h}")
|