linux

原 Ubuntu终端多窗口分屏Terminator

2018-10-02  本文已影响29人  井底蛙蛙呱呱呱

1、安装

Terminator最大的特点就是可以在一个窗口中打开多个终端

sudo apt-get install terminator

2、快捷键

Ctrl+Shift+E    垂直分割窗口
Ctrl+Shift+O    水平分割窗口
Ctrl+Shift+w    关闭当前窗口
Ctrl+Shift+Q    关闭当前所有窗口
    F11         全屏
Ctrl+Shift+C    复制
Ctrl+Shift+V    粘贴
Ctrl+Shift+N    或者 Ctrl+Tab 在分割的各窗口之间切换
alt+ 方向键      上下左右移动各个窗口
Ctrl+Shift+方向键  将分隔条上下左右移动
Ctrl+Shift+X    将分割的某一个窗口放大至全屏使用
Ctrl+Shift+Z    从放大至全屏的某一窗口回到多窗格界面

3、优化配置

初始界面不太美观
修改配置文件

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

最后更改.bashrc文件,使得prompt有颜色。取消# force_color_prompt=yes的注释即可。

本文来自 MrGong_ 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/MrGong_/article/details/77817018?utm_source=copy

上一篇下一篇

猜你喜欢

热点阅读