I want to write a single bash script/configuration/whatever to open up multiple windows with a predefined arrangement by executing a single command.
For example, when I get notified about problems with the mail server, I want to execute connect_mailserver.sh which opens up a window-container containing
- a window showing
tail -f /var/log/mail.log - a window showing
htop - a browser window showing all mail-related checks in Nagios
- a shell for doing stuff on that server
- ...
All the windows should be started in predefined positions but I should also be able to move and resize them.
I believe there are many elegant solutions for that, maybe with screen or emacs. Maybe there is a better tool for that? Do you have a similar solution?