Using terminator command (with examples)
- Linux
- November 5, 2023
Introduction
The terminator
command is a powerful tool that allows you to arrange multiple GNOME terminals in a single window. This can greatly enhance your productivity by allowing you to simultaneously view and work with multiple terminals.
In this article, we will explore different use cases of the terminator
command and provide code examples for each use case. We will also discuss the motivation behind using each example, explain the arguments used in the command, and provide example outputs.
1: Starting terminator
window
To start a terminator
window, simply open a terminal and enter the following command:
terminator
Motivation: This command is useful if you want to quickly start a new terminator
window without any additional configurations.
Example Output: A new terminator
window will open, displaying a single GNOME terminal.
2: Starting with a fullscreen window
To start terminator
with a fullscreen window, use the -f
argument:
terminator -f
Motivation: If you prefer to work in fullscreen mode for better visibility or to utilize the maximum screen space, this command is helpful.
Example Output: When you execute this command, a terminator
window will open in fullscreen mode, maximizing the terminal area on your screen.
3: Splitting terminals horizontally
To split terminals horizontally in a terminator
window, use the keyboard shortcut Ctrl + Shift + O
.
Motivation: This command is useful when you want to divide your terminator
window into two horizontal panes, allowing you to view and work with multiple terminals simultaneously.
Example Output: After executing the command, the terminator
window will be divided into two horizontal panes, each containing a separate GNOME terminal.
4: Splitting terminals vertically
To split terminals vertically in a terminator
window, use the keyboard shortcut Ctrl + Shift + E
.
Motivation: This command is helpful when you need to divide your terminator
window into two vertical panes, enabling you to work with multiple terminals side by side.
Example Output: After executing the command, the terminator
window will be split vertically into two panes, each containing a separate GNOME terminal.
5: Opening a new tab
To open a new tab in terminator
, use the keyboard shortcut Ctrl + Shift + T
.
Motivation: This command comes in handy when you want to create a new tab within your existing terminator
window, allowing you to organize and switch between different terminal sessions efficiently.
Example Output: After executing the command, a new tab will be created within the terminator
window, providing a fresh terminal session.
Conclusion
In this article, we explored various use cases of the terminator
command, including starting terminator
windows, using fullscreen mode, splitting terminals horizontally and vertically, and opening new tabs. With the help of code examples and explanations, we discussed the motivation behind each use case, explained the arguments used, and provided example outputs for better understanding.
By leveraging the features of terminator
, you can greatly enhance your productivity by efficiently managing and working with multiple GNOME terminals in a single window.