美文网首页
Linux 多窗口终端

Linux 多窗口终端

作者: Caiaolun | 来源:发表于2020-08-20 14:53 被阅读0次

    原文地址: https://www.cnblogs.com/ChrisCoder/p/10027357.html

    teminator安装及配置

    terminator 安装

    sudo apt-get install terminator
    

    常用快捷键

    Ctrl+Alt+T 新建窗口
    Ctrl+Shift+T 新建标签页
    Ctrl+Shift+O (水平分割窗口)
    Ctrl+Shift+E(垂直分割窗口)
    Alt+Up (切换窗口)
    Alt+Down
    Alt+Left
    Alt+Right
    

    配置

    为了让terminator更加美观

    • 修改terminator的config文件
      ~/.config/terminator/config
      将以下内容替换掉原来的内容
    [global_config]
      focus = system
      suppress_multiple_term_dialog = True
      tab_position = bottom
      title_transmit_bg_color = "#d30102"
      window_state = maximise
    [keybindings]
    [layouts]
      [[default]]
        [[[child1]]]
          parent = window0
          type = Terminal
        [[[window0]]]
          parent = ""
          type = Window
    [plugins]
    [profiles]
      [[default]]
        background_color = "#002b36"
        background_darkness = 0.92
        background_image = None
        background_type = transparent
        cursor_color = "#eee8d5"
        font = Monospace 11
        foreground_color = "#e6e0da"
        icon_bell = False
        palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#586e75:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3"
        split_to_group = True
    
    

    备注:Ubuntu终端默认的颜色为:44,0,30, 转化为16进制: ##2c001e

    参考

    Solarized-Dark theme configuration in Terminator – Diwakar Moturu – Medium

    (转载请注明作者和出处:http://www.cnblogs.com/ChrisCoder/未经允许请勿用于商业用途)

    相关文章

      网友评论

          本文标题:Linux 多窗口终端

          本文链接:https://www.haomeiwen.com/subject/crnsjktx.html