if a terminal window is too big or too small the box spacing will be super weird. in the controller, there's an initTerminalUtils function with getters for the height and width of terminal.
blessed lets you change the location of boxes with
box.top =
and
box.left =
you can use percentages or integers. the values are relative to the parent box (or the screen if it has no box parent).
if a terminal window is too big or too small the box spacing will be super weird. in the controller, there's an initTerminalUtils function with getters for the height and width of terminal.
blessed lets you change the location of boxes with
box.top =
and
box.left =
you can use percentages or integers. the values are relative to the parent box (or the screen if it has no box parent).