当前位置: 首页 > 工具软件 > Terminator > 使用案例 >

Linux-分屏软件terminator的安装配置

杨凯旋
2023-12-01

1. 下载软件

sudo apt-get install terminator ## 适用root权限

2. 软件适用快捷键

命令     说明
Ctrl+Shift+O     水平分割窗口
Ctrl+Shift+E     垂直分割窗口
F11     全屏/退出全屏
Ctrl+Shift+C     复制
Ctrl+Shift+V     粘贴
Ctrl+Tab     在分割的各窗口之间切换
Ctrl+Shift+X     将分割的某一个窗口放大至全屏使用
Ctrl+Shift+Z     从放大至全屏的某一窗口回到多窗格界面
Alt + up/down/left/right 在分屏中移动

3. 配置文件

(1)配置文件的路径:

/home/username/.config/terminator

(2)备份默认的配置文件:

mv  config config.back

(3)初始配置文件为空

[global_config]
[keybindings]
[layouts]
  [[default]]
    [[[child1]]]
      parent = window0
      type = Terminal
    [[[window0]]]
      parent = ""
      type = Window
[plugins]
[profiles]
  [[default]]

(4)最终设定的配置文件

[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.95
    cursor_color = "#2D2D2D" # 光标颜色
    cursor_blink = True # 光标是否闪烁
    foreground_color = "#EEE9E9" # 文字的颜色
    use_system_font = False # 是否启用系统字体
    font = Ubuntu Mono 13  # 字体设置,后面的数字表示字体大小
    copy_on_selection = True # 选择文本时同时将数据拷贝到剪切板中
    show_titlebar = True # 显示标题栏,也就是 terminator 中那个默认的红色的标题栏
[layouts]
  [[default]]
    [[[child1]]]
      type = Terminal
      parent = window0
      profile = default
    [[[window0]]]
      type = Window
      parent = ""
[plugins]

个人总结,该软件在多操作框需求时候非常好用,值得推荐。
当然适用secureCRT在windows界面也可以实现多个屏幕的分屏操作。

参考

https://www.linuxidc.com/Linux/2018-01/150000.htm

 类似资料: