Ubuntu安装terminator以及美化

安装

使用apt包管理工具轻松安装,这里的环境为Ubuntu16.04,其他环境的安装配置应该差不多。

sudo apt-get install terminator

美化

修改或者创建.config/terminator/config文件,添加如下配置

[global_config]
  title_font = Ubuntu Mono 11[keybindings]
[layouts]
  [[default]]
    [[[child1]]]
      parent = window0
      type = Terminal
    [[[window0]]]
      parent = ""
      type = Window
[plugins]
[profiles]
  [[default]]
    background_color = "#002b36"
    background_darkness = 0.91
    background_image = None
    background_type = transparent
    font = Ubuntu Mono 11
    foreground_color = "#e0f0f1"
    use_system_font = False
    show_titlebar = False

其实这些配置都在界面中可以调节,窗口右键->首选项->profiles->colors,

Ubuntu安装terminator以及美化_第1张图片

修改默认终端工具

安装dconfig-editor

sudo apt-get install dconf-tools

安装成功后,就可以在终端中通过命令 dconf-editor来打开这个工具,然后从左边的的菜单栏中按照下面的步骤依次进入指定的菜单项:

org > gnome > desktop > applications > terminal

此时,我们可以看到使用 Terminator 作为默认终端工具的配置为:

exec terminatorexec-arg -e

如果想使用 gnome-terminal 为默认终端工具的话,就将上面的配置更改为:

exec gnome-terminalexec-arg -x

保存退出之后,使用快捷键 “Ctrl + Alt + T” 启动一个终端时,这时启动起来的就是 gnome-terminal 工具了!

你可能感兴趣的:(系统工具配置)