Hi tinypoodle
I have a preference for "best value per screen estate", and 'watcher' which does an excellent job....
Saving screen real estate is always a good thing however for some reason 'watch' always adds an extra line to it's output.
To save a line one could (theoretically) use this:
echo -en "\033[1;23f"
and call aterm with a geometry of 4x1
but that does not work.
If you are really keen on saving one line then why not try this:
printf '\33]2;%s\007' $MyVariableToDisplay
This will change the aterm title bar with the value in $MyVariableToDisplay
then use aterm with a geometry of 4x1.
Another advantage of using the title bar to display the required data is that the script can be minimized thus taking
no screen real estate at all and by simply glancing at the task bar will let you see it.
By the way, I also tried using a geometry of 4x0 since only the title bar is needed, but aterm goes bonkers.
One more thing that can be done is to right click on the title bar then select "shade".
This will leave only the title bar and thus saving one more line.
Hope it's of some help.