Opening multiple tabs with gnome-terminal
Invoking gnome-terminal
three times and stringing the commands together with &&
won't work, and the tabs won't appear in the same terminal, and indeed you will have to quit the first terminal for the next to appear.
The way to make sure all your tabs open in one instance of gnome-terminal
all at the same time is to use the --tab-with-profile=PROFILENAME
switch. In the command below you can leave the first command as gnome-terminal --tab
as that it is the first window to be generated; now all you need to know is which profile you are using and you can use --tab-with-profile=YourProfile
to invoke the other commands and they will all appear at once in the original terminal opened.
Here is your command modified:
gnome-terminal --tab --title="rails s" -e "rails s" --tab-with-profile=Default --title="spork" -e "spork" --tab-with-profile=Default --title="autotest" -e "autotest"
(For future readers: substitute the program names given after -e
to test out the command line given here; remember your targets for -e
must be installed and in $PATH
; for things not in $PATH
use an absolute path such as, for example, /opt/mike/program
)
Remember to specify the actual profile you are using for the --tab-with-profile
switches. The first invocation of gnome-terminal
must use --tab
and all the rest --tab-with-profile
. With this method it should be possible to open a large number of tabs all in the same instance of gnome-terminal
.
Find the profile you are currently using by right clicking in gnome-terminal
and look at profiles and there will be a marker on the one you are currently using:
Go to Profile preferences for more information and to check the name of the profile.
For more information, see man gnome-terminal
and the Ubuntu manpages online.
Note:
If you have trouble launching your programs with gnome-terminal
, either add the location to $PATH
, or make a symlink and place it in a $PATH
location, or (what was very useful here): create a simple bash wrapper script and call that in the gnome-terminal
command line above. (You must call it with an absolute path: i.e. /location/of/script
and not just the name of it.)
As an example:
#!/bin/bash
cd $HOME/.rvm/gems/ruby-2.0.0-p0/bin
spork
exit 0
Then name the script, make it executable and call it in the gnome-terminal
command line above. Do this for all the non repo programs that are problematic.
Below is an answer from stackoverflow.com
Add a
eval "$BASH_POST_RC"
to the end of your .bashrcSet the
BASH_POST_RC
environment variable for each tab to that command you like to execute, e.g.:gnome-terminal --working-directory="/home/zardoz/projects/my_rails_app" --tab -e 'bash -c "export BASH_POST_RC=\"rails server\"; exec bash"' --tab -e 'bash -c "export BASH_POST_RC=\"autotest\"; exec bash"'