系统相关
首页 > 系统相关> > ubuntu16.04下如何配置terminator

ubuntu16.04下如何配置terminator

作者:互联网

Terminator 安装

Terminator 的安装非常方便,在 Ubuntu 中只需要用 apt 的包管理工具就能轻松地进行安装:

$ sudo apt-get install terminator

Ubuntu terminator 无法打开解决方案

在使用Ubuntu的过程中,突然发现Ctrl + Alt + T无法打开terminator,但是Ubuntu本身的终端是可以打开的。重启电脑,重装terminator,都无效。后来发现是自己把ubuntu默认的python版本由2.x改为了3.x,而terminator是基于python2的,所以就无法打开终端了。

解决方案

sudo vim /usr/bin/terminator

将#!/usr/bin/python改为#!/usr/bin/python2

Terminator 美化

因为初始化界面不太美观,可以设置配置文件,方法如下:

  1. cd ~/.config/terminator/
  2. sudo vim config

如果报错,Unable to open ~/.config/terminator/config ,解决方法: 
打开terminator终端,然后右击终端的黑色背景,选择preference->layouts->add,关闭该窗口即可找到config文件。

修改配置文件,我的配置文件如下:

[global_config]

[keybindings]

[profiles]

  [[default]]

    use_system_font = False # 是否启用系统字体

    login_shell = True

    background_darkness = 0.92 # 背景颜色

    background_type = transparent

    background_image = None

    cursor_color = "#3036ec" # 光标颜色

    foreground_color = "#00ff00"

    show_titlebar = False # 不显示标题栏,也就是 terminator 中那个默认的红色的标题栏

    custom_command = tmux

    font = Ubuntu Mono 15  # 字体设置,后面的数字表示字体大小

[layouts]

  [[default]]

    [[[child1]]]

      type = Terminal

      parent = window0

    [[[window0]]]

      type = Window

      parent = ""

[plugins]

 

还可以手动通过窗口设置:

右键->首选项,按以下设置即可:

 

 

 

最终结果:

 

 唯一遗憾的是:user(@)的字体和编辑文本字体只能一样。

 

标签:bin,ubuntu16.04,配置文件,配置,terminator,background,Ubuntu,config
来源: https://blog.csdn.net/mahui85/article/details/121574520