Terminator is very powerful at organizing several computers or servers due to the split window and group all function. But here's the deal: I created my own Layout and would appreciate it to load at startup of terminator. Is that possible?
8 Answers
After setting up your layout, right-click on any terminal background and choose Preferences → Layouts tab and click on Add button.
Give it a name and hit Close.
This should create the mentioned
~/.config/terminator/config
file.Now you can start terminator using the saved layout using:
terminator -l yourLayout
(replace yourLayout with whatever you chose on step 2).(optional) Edit the
~/.config/terminator/config
file so that where it says[layouts]
and nested below it[[yourLayout]]
, rename yourLayout to default and remove/rename the previous default layout. Now, when Terminator starts without any parameters, it will load your custom[[default]]
layout!(optional) Edit the
[[[terminalx]]]/ command = a custom command;bash
eg:command = ssh user@IP;bash
(ending with bash) for each terminal, so that it will run your custom command during startup!!

- 103

- 2,241
- 2
- 14
- 9
-
2I guess there is no way to make it remember also the paths where each window is when being saved? – JussiR Mar 19 '14 at 10:24
-
The flags suggested by @Patrick on his answer below solves the layout issues on my first commend. – mhnagaoka Apr 05 '14 at 14:24
-
9
-
6
- Set a custom initial command for each window. =) http://askubuntu.com/questions/349385/how-to-start-terminator-with-a-custom-command-per-window
– vmassuchetto Apr 15 '15 at 08:27 -
1This works well for tabs and windows, but for some reason 'directory' and 'command' properties in config file don't function properly. At the very least I want Terminator to launch in a specific folder. --working-directory flag works as expected, but it will not allow me to specify a dir of my choice to every tab in my custom layout. – yuranos Feb 20 '17 at 00:51
-
1
-
1This was the only thing that worked for me. The current accepted answer does not work. – jtsmith1287 Aug 06 '18 at 18:07
-
In my case, after just installing Terminator for the first time, when clicking "Add" in the Layouts tab, nothing happens. Not sure why... – Ryan Oct 04 '19 at 16:10
-
It does not work. This is even commented in the documentation. The documentation recommends creating the profile first, saving it, closing and opening it again and then add the custom commands without saving (?) Editing the config also works, which is why I found this question because I couldn't recall the path, LOL – runlevel0 Aug 17 '22 at 09:36
-
There is a very easy way to accomplish this:
- Open Terminator
- Right click -> Preferences
- In the Layouts tab (to the right of the Profiles tab), edit the default one, you will see that it says Window | window0 and Terminal | child1.
- For the Terminal | child1, you can set: a Profile (to choose from the installed ones), a Default command, and a Working directory.
- Set it/them to whatever you like, close, reopen again...
- ... and voilá!
Hope this helped!

- 610
-
17Important: Follow these steps exactly and it works. Bizarrely, if you click "Save" after setting a Custom command and/or Working directory, it won't work. Clicking Save seems to clear anything you entered for Custom command and Working directory. – trebormf Mar 18 '19 at 14:02
-
3This does not even answer the question. The question is about changing the default layout, not changing the profile for specific terminals in a layout. – Fritz Jun 18 '19 at 11:16
-
3I've flagged it as it does not answer the question even though it is marked as such. I think for the sake of a strong community it is vital that the answer, even if it helps the original questioner, also helps the community. This answer does not. – SeveQ Jun 28 '19 at 11:20
-
The question is about setting user-preferred layout as default during startup. This is not the solution! – Casonade Dec 18 '22 at 21:07
After saving your layout (as per mhnagaoka's answer), you can make your changes used by default by editing the config file.
Edit the ~/.config/terminator/config
file and look for where it says [layouts]
. It should look something like this:
[layouts]
[[default]]
# ..default layout
[[yourLayout]]
# ..your custom layout
Rename [[yourLayout]]
to [[default]]
and remove/rename the previous default layout. Now, when Terminator starts without any parameters, it will load your custom default
layout!
-
1This answer suited me best because it doesn't rely on using any mouse interaction. – Reuel Ribeiro Feb 23 '19 at 02:27
I use the method mhnagaoka suggested, but I made it usable from the launcher in Unity.
I also had an issue with plain terminator -l my_default
command,
so specify these additional flags
- -b for borderless and
- -m for maximized.
The final Command is terminator -m -b -l my_default
.
Now you need to modify terminator.desktop entry for Unity.
Go to your application folder, in my case it was /usr/share/applications
.
You need to have root permissions to edit with your text editor terminator.desktop
.
In my case it was, sudo vim terminator.desktop
.
Replace the Exec argument with your Command.
Now you can add the entry to your Unity Launcher, and it should always open your custom layout on the start.
-
4not working in my 14.04 :( it just shows the same single terminal terminator window – tishma Jul 31 '14 at 12:01
-
You have to add
; bash
or; zsh
(depending on your shell) after each command in your layout. Then it works fine and opens all windows. – luke Apr 09 '19 at 08:22
After setting up your layout, right-click on any terminal background and choose Preferences → Layouts tab and click on Add button. When prompted for the name type "default" and hit Enter.
Note: This may be a glitch but it's a useful glitch for me!

- 303
-
1
-
1To everyone looking for the answer. This is the best and the easiest answer. – Omar Tariq Aug 21 '18 at 07:42
-
-
-
To open a previously saved layout, open the Terminator Layout Launcher by pressing ALT-L. There, click on the layout you need, and press launch.

- 289
- 4
- 8
It's very simple. No need to edit the configuration file.
Just create your custom layout and Right Click->Preference->Layout->default and Press the save button. Now our configuration is saved as the default configuration. From next launch of the terminator, we will get the custom layout at the startup itself.
-
Found this to be the easiest solution of them all here. Firstly, positioning and creating set of windows and groups you want. Then saving custom layout and then re-opening the terminator did the trick! Thanks! – Shaze Feb 28 '19 at 10:24
Just as an anecdote, even after configuring custom layout 're-use profile for newer terminals' has to be checked otherwise the new terminal again opens in default profile.

- 271
~/.config/terminator/config
, or at least everything below[layouts]
? – pconley Jul 01 '12 at 06:10sleep 1
in your shell script. – Dec 12 '13 at 08:21~/.config/terminator/config
and editcommand = cd /some/folder; bash
. then save it and reopen the terminator. – suhailvs Feb 11 '19 at 04:04