红联Linux门户
Linux帮助

Ubuntu下terminator的安装/配置/默认启动/使用

发布时间:2017-05-17 09:53:34来源:linux网站作者:BlackSmith-2617
一、安装
sudo apt-get install terminator
在安装好后通过win+tab呼出dash搜索“termi~~”应该就能够找到安装好的terminator了,(此时通过“ctrl+alt+t”的方式呼出的还是系统默认的gonme终端)。呼出的terminator如下图所示:
Ubuntu下terminator的安装/配置/默认启动/使用
(这里是使用了一个快捷键调成了水平排列的两个终端窗口)
 
二、配置
如果要修改配色字体等,要通过修改配置文件来完成,找到配置文件:cd
 ~/.config/terminator/ 可是通过这个路径我并没有找到对应的config文件,只好通过图形化的方式配置了,如下图:
Ubuntu下terminator的安装/配置/默认启动/使用
右键找到“首选项”这个选项(系统为英文语言的话应该是“preference”),然后出现下图,至于细节就不再多说:
Ubuntu下terminator的安装/配置/默认启动/使用
Ubuntu下terminator的安装/配置/默认启动/使用
 
三、默认启动
安装dconf-tools,这个是设置默认终端的必须
$ sudo apt-get install dconf-tools
打开dconf-tools,通过多级菜: org > gnome > desktop > terminal 或者是在 org > gnome > desktop > applications > terminal 
找到并修改内容为如下:
Ubuntu下terminator的安装/配置/默认启动/使用
默认快捷键的终端为系统终端,则更改为:
exec  gnome-terminal
exec-arg -x
默认启动terminator,即:
exec  x-terminal-emulator
exec-arg -e
 
四、使用
网络上查了下快捷键几乎就是和这个几个:
Ctrl+Shift+E    垂直分割窗口
Ctrl+Shift+O    水平分割窗口
F11         全屏
Ctrl+Shift+C    复制
Ctrl+Shift+V    粘贴
Ctrl+Shift+N    或者 Ctrl+Tab 在分割的各窗口之间切换
Ctrl+Shift+X    将分割的某一个窗口放大至全屏使用
Ctrl+Shift+Z    从放大至全屏的某一窗口回到多窗格界面
可见真的是简单强大呢!
 
配置文件参考:
安装
sudo apt-get install terminator
配置
cd ~/.config/terminator/ && sudo gedit config
修改配置文件
[global_config]
title_transmit_bg_color = "#d30102"
focus = system
suppress_multiple_term_dialog = True
[keybindings]
[profiles]
[[default]]
palette = "#2d2d2d:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#d3d0c8:#747369:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#f2f0ec"
background_color = "#2D2D2D" # 背景颜色
background_image = None   
background_darkness = 0.85 
cursor_color = "#2D2D2D" # 光标颜色
cursor_blink = True # 光标是否闪烁
foreground_color = "#EEE9E9" # 文字的颜色
use_system_font = False # 是否启用系统字体
font = Ubuntu Mono 13  # 字体设置,后面的数字表示字体大小
copy_on_selection = True # 选择文本时同时将数据拷贝到剪切板中
show_titlebar = False # 不显示标题栏,也就是 terminator 中那个默认的红色的标题栏
[layouts]
[[default]]
[[[child1]]]
type = Terminal
parent = window0
profile = default
[[[window0]]]
type = Window
parent = ""
[plugins]
 
修改terminator外观
[global_config]
[keybindings]
[profiles]
[[default]]
use_system_font = False
login_shell = True
background_darkness = 0.92
background_type = transparent
background_image = None
cursor_color = "#3036ec"
foreground_color = "#00ff00"
show_titlebar = False
custom_command = tmux
font = Monaco 12
[layouts]
[[default]]
[[[child1]]]
type = Terminal
parent = window0
[[[window0]]]
type = Window
parent = ""
[plugins]
 
本文永久更新地址:http://www.linuxdiyf.com/linux/30839.html