The linux dialog command is a great tool for creating dialog boxes in terminal windows (e.g. in a bash script).
However, there is a drawback of dialog which is that the window is always positioned in the center of the screen.
In particular I would like to use the tail box function, e.g.
dialog --tailboxbg MYFILE 20 20
... which displays a tail of a file inside a text dialog (just like the built-in tail command).
However, I would like to place the resulting window at different positions on the screen. e.g. just in the top half or the lower half. dialog does not provide such functionality.
Is there any way to move the windows provided by dialog or can someone recommend an alternative tool which is capable of this?