博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu14.04终端分屏terminator的安装使用与配置
阅读量:6345 次
发布时间:2019-06-22

本文共 3031 字,大约阅读时间需要 10 分钟。

ctrl+alt+t 打开终端

运行命令

sudo apt-get install terminator

安装终端程序terminator,安装完毕后按ctrl+alt+t打开终端如下图所示 

这里写图片描述

这个终端程序可以分屏,常用操作快捷键如下:

Ctrl+Shift+O    Split terminals Horizontally.(上下开新窗口)Ctrl+Shift+E    Split terminals Vertically.(垂直开新窗口)Ctrl+Shift+Right    Move parent dragbar Right.(放大当前窗口 向右)Ctrl+Shift+Left    Move parent dragbar Left.Ctrl+Shift+Up    Move parent dragbar Up.Ctrl+Shift+Down    Move parent dragbar Down.Ctrl+Shift+W    Close the current terminal.Alt+Up    Move to the terminal above the current one.(切换当前窗口)Alt+Down    Move to the terminal below the current one.Alt+Left    Move to the terminal left of the current one.Alt+Right    Move to the terminal right of the current one.Ctrl+Shift+S    Hide/Show Scrollbar.(隐藏滚动条)Ctrl+Shift+F    Search within terminal scrollbackCtrl+Shift+N or Ctrl+Tab    Move to next terminal within the same tab, use Ctrl+PageDown to move to the next tab. If cycle_term_tab is False, cycle within the same tab will be disabledCtrl+Shift+P or Ctrl+Shift+Tab    Move to previous terminal within the same tab, use Ctrl+PageUp to move to the previous tab. If cycle_term_tab is False, cycle within the same tab will be disabledCtrl+Shift+C    Copy selected text to clipboardCtrl+Shift+V    Paste clipboard textCtrl+Shift+Q    Quits TerminatorCtrl+Shift+X (最大化当前窗口)    Toggle between showing all terminals and only showing the current one (maximise).Ctrl+Shift+Z    Toggle between showing all terminals and only showing a scaled version of the current one (zoom).Ctrl+Shift+T    Open new tabCtrl+Shift+Alt+T    Open new tab at root level, if using extreme_tabs.Ctrl+PageDown    Move to next TabCtrl+PageUp    Move to previous TabCtrl+Shift+PageDown    Swap tab position with next TabCtrl+Shift+PageUp    Swap tab position with previous TabCtrl+Shift+F    Open buffer search bar to find substrings in the scrollback buffer. Hit Escape to cancel.Ctrl+Plus (+)    Increase font size. Note: this may require you to press shift, depending on your keyboardCtrl+Minus (-)    Decrease font size. Note: this may require you to press shift, depending on your keyboardCtrl+Zero (0)    Restore font size to original setting.F11    Toggle fullscreen(放大当前窗口)Ctrl+Shift+R    Reset terminal stateCtrl+Shift+G    Reset terminal state and clear window

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

cd ~/.config/terminator/ 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]

最后效果如下: 

这里写图片描述

 

 
你可能感兴趣的文章
在Mac版IDEA中选中一个文件然后在文件路径中打开以及IDEA中设置快捷键
查看>>
ClassNotFoundException和NoClassDefFoundError的区别
查看>>
工作组模式下SQL Server 2008 R2 数据库镜像
查看>>
rsync+inotify 实现服务器之间目录文件实时同步
查看>>
设计模式原则篇:(2)里氏替换原则--Listkov Substitution Principle
查看>>
unity C# Mathf类源码
查看>>
iText生成pdf(图片转PDF)
查看>>
CSS实现鼠标滑过表格变色
查看>>
Linux系统下如何查看及修改文件读写权限
查看>>
内存泄漏和内存溢出(面试题)
查看>>
【源资讯 第43期】大 JS 又被黑;Rust 学习曲线是最大痛点
查看>>
杨老师课堂之JavaEE三大框架Hibernate入门第一课
查看>>
iOS开发常用三方库
查看>>
logback和log4j配置
查看>>
Java多线程
查看>>
mysql主从原理?主从不同步怎么办?主从慢?
查看>>
C语言的printf()语句(上)
查看>>
iOS开发过程中的心得
查看>>
QOS配置命令
查看>>
linux安装搭建media-wiki
查看>>