1๐
โ
I usually have script that launches new gnome terminal using the gnome-terminal
command, optionally with several tabs (for example, if I need tow django servers to run in parallel, or django server and DB console).
The drawback is that this is new terminal, however, if you need several tabs it can start you fresh new terminal with all your tabs โ you just need to write your script once.
Man page is here
gnome-terminal --tab -t django1 --working-directory="dir1" -e "python manage.py runserver 8000" \
--tab -t django2 --working-directory="dir2" -e "python manage.py runserver 8002"
๐คeran
Source:stackexchange.com