先上效果图

以Ubuntu为例,安装Terminator
安装
sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator
卸载
sudo apt purge terminator
常用快捷键
全屏:F11
水平分割:Ctrl/Command + Shift + O
垂直分割:Ctrl/Command + Shift + E
最大(小)化:Ctrl/Command + Shift+ X
分割线上移:Ctrl/Command + Shift + Up
分割线下移:Ctrl/Command + Shift + Down
分割线左移:Ctrl/Command + Shift + Left
分割线右移:Ctrl/Command + Shift + Right
更多快捷键: 右键–>Preferences–>Keybingds
配置
因为其本来的配置相对来说不是很友好,我的配置如下,仅供参考
# 配置文件路径
~/.config/terminator/config
# 配置文件内容如下
[global_config]
inactive_color_offset = 0.807692307692
title_font = MesloLGM Nerd Font Bold 10
title_use_system_font = False
[keybindings]
[layouts]
[[default]]
[[[child1]]]
parent = window0
profile = default
type = Terminal
[[[window0]]]
parent = ""
type = Window
[plugins]
[profiles]
[[default]]
background_darkness = 0.8
background_type = transparent
copy_on_selection = True
cursor_color = "#aaaaaa"
font = MesloLGM Nerd Font Bold 10
scrollback_lines = 10000
scrollbar_position = hidden
show_titlebar = False
use_system_font = False
参考
官方链接:https://gnometerminator.blogspot.com/p/introduction.html