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

一.安装

sudo apt-get install terminator

在安装好后通过win+tab呼出dash搜索“termi~~”应该就能够找到安装好的terminator了,(此时通过“ctrl+alt+t”的方式呼出的还是系统默认的gonme终端)。呼出的terminator如下图所示:
这里写图片描述

二.配置

cd ~/.config/terminator/ && sudo gedit config
[global_config]
  focus = system
  suppress_multiple_term_dialog = True
  title_transmit_bg_color = "#d30102"
[keybindings]
[layouts]
  [[default]]
    [[[child1]]]
      parent = window0
      profile = default
      type = Terminal
    [[[window0]]]
      parent = ""
      type = Window
[plugins]
[profiles]
  [[default]]
    background_color = "#2d2d2d"
    background_darkness = 0.85
    background_image = None
    copy_on_selection = True
    cursor_color = "#ff0000"
    font = Ubuntu Mono 13
    foreground_color = "#eee9e9"
    palette = "#2d2d2d:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#d3d0c8:#747369:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#f2f0ec"
    scrollback_infinite = True
    show_titlebar = False
    use_system_font = False

三.更改默认终端设置

安装dconf-tools,这个是设置默认终端的必须
sudo apt-get install dconf-tools

打开dconf-tools,通过多级菜: org > gnome > desktop > terminal 或者是在 org > gnome > desktop > applications > terminal
找到并修改内容为如下:
这里写图片描述
默认快捷键的终端为系统终端,则更改为:

exec  gnome-terminal
exec-arg -x

默认启动terminator,即:

exec  x-terminal-emulator
exec-arg -e

猜你喜欢

转载自blog.csdn.net/weixin_40522162/article/details/80305611