“Terminator基础”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
 
(没有差异)

2021年12月3日 (五) 09:19的最新版本


Terminator 常用的快捷键


窗口之间切换显示  Ctrl+Shift+X 应该是只显示当前窗口和全屏

最大化和最小化 Maximise terminal 	最大化当前的tab 其它全最小化 ,再操作是相反   	Shift+Ctrl+X

水平分割终端 Ctrl+Shift+O

垂直分割终端  Ctrl+Shift+E

搜索   Ctrl+Shift+F
复制  Ctrl+Shift+C
粘贴  Ctrl+Shift+V
关闭当前终端  Ctrl+Shift+W
退出当前窗口  Ctrl+Shift+Q
打开终端  Ctrl+Shift+T

全屏状态  F11
clear屏幕  Ctrl+Shift+G
在垂直分割的终端中将分割条向右移动  Ctrl+Shift+Right
在垂直分割的终端中将分割条向左移动  Ctrl+Shift+Left
隐藏/显示滚动条  Ctrl+Shift+S





Navigating around

Apart from the obvious of clicking the terminal for focus, there are a number of shortcuts that will move the focus around:

Action 	           Options 	Default Shortcut
Move focus 	        Up, Down, Left, Right 	Alt+<Arrow>
Cycle to terminal * 	 Next, Prev 	(Shift+)Ctrl+Tab
Focus to terminal *	 Next, Prev 	Shift+Ctrl+N/P  各tab 之间切换
Switch to tab # 	   1 to 10 	 
Switch tab 	      Previous, Next 	Ctrl+PgUp/PgDn
Context menu 	  	   Menu Key
Help [1] 	  	  F1

New Tab *	    	Shift+Ctrl+T
Split terminal(分离)*  	Horizontally, Vertically 	Shift+Ctrl+O/E

也可以有  右键然后查看 快捷键







Terminator快捷键汇总
//第一部份:关于在同一个标签内的操作
Alt+Up                          //移动到上面的终端
Alt+Down                        //移动到下面的终端
Alt+Left                        //移动到左边的终端
Alt+Right                       //移动到右边的终端
Ctrl+Shift+O                    //水平分割终端
Ctrl+Shift+E                    //垂直分割终端
Ctrl+Shift+Right                //在垂直分割的终端中将分割条向右移动
Ctrl+Shift+Left                 //在垂直分割的终端中将分割条向左移动
Ctrl+Shift+Up                   //在水平分割的终端中将分割条向上移动
Ctrl+Shift+Down                 //在水平分割的终端中将分割条向下移动
Ctrl+Shift+S                    //隐藏/显示滚动条
Ctrl+Shift+F                    //搜索
Ctrl+Shift+C                    //复制选中的内容到剪贴板
Ctrl+Shift+V                    //粘贴剪贴板的内容到此处
Ctrl+Shift+W                    //关闭当前终端
Ctrl+Shift+Q                    //退出当前窗口,当前窗口的所有终端都将被关闭
Ctrl+Shift+X                    //最大化显示当前终端
Ctrl+Shift+Z                    //最大化显示当前终端并使字体放大
Ctrl+Shift+N or Ctrl+Tab        //移动到下一个终端
Ctrl+Shift+P or Ctrl+Shift+Tab  //Crtl+Shift+Tab 移动到之前的一个终端
 
//第二部份:有关各个标签之间的操作
F11                             //全屏开关
Ctrl+Shift+T                    //打开一个新的标签
Ctrl+PageDown             









 

config

有时默认配置会不生效   on debian 10

terminator   --config=/home/evan/.config/terminator/36 

写进 /usr/share/applications/terminator.desktop 

还有 .bashrc
alias  terminator='terminator   --config=/home/evan/.config/terminator/36'


 cat /usr/share/applications/terminator.desktop
#Exec=terminator
Exec=terminator --config=/home/evan/.config/terminator/36
TargetEnvironment=Unity



evan@my:~$ cat  .config/terminator/config
[global_config]
  title_transmit_fg_color = "#000000"
  title_transmit_bg_color = "#3e3838"
  inactive_color_offset = 1.0
  enabled_plugins = CustomCommandsMenu, LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler
[keybindings]
[profiles]
  [[default]]
    background_color = "#0e2424"
    background_darkness = 1.0
    background_type = transparent
    cursor_shape = ibeam
    font = Liberation Mono 13
    foreground_color = "#e8e8e8"
    scroll_background = False
    scrollback_lines = 3000
    palette = "#000000:#5a8e1c:#2d5f5f:#cdcd00:#1e90ff:#cd00cd:#00cdcd:#e5e5e5:#4c4c4c:#868e09:#00ff00:#ffff00:#4682b4:#ff00ff:#00ffff:#ffffff"
    use_system_font = False
    copy_on_selection = True
[layouts]
  [[default]]
    [[[child1]]]
      type = Terminal
      parent = window0
      profile = default
    [[[window0]]]
      type = Window
      parent = ""
      size = 925, 570
[plugins]

config 说明

global_config]
title_transmit_bg_color = "#d30102"
focus = system
suppress_multiple_term_dialog = True
[keybindings]
[profiles]
[[default]]
palette = "#2d2d2d:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#d3d0c8:#747369:#f2777a:#99cc99:#ffcc66:#6699cc:#cc99cc:#66cccc:#f2f0ec"
background_color = "#2D2D2D" # 背景颜色
background_image = None   
background_darkness = 0.85 
cursor_color = "#FFFFFF" # 光标颜色
cursor_blink = True # 光标是否闪烁
foreground_color = "#EEE9E9" # 文字的颜色
use_system_font = False # 是否启用系统字体
font = Ubuntu Mono 13  # 字体设置,后面的数字表示字体大小
copy_on_selection = True # 选择文本时同时将数据拷贝到剪切板中
show_titlebar = False # 不显示标题栏,也就是 terminator 中那个默认的红色的标题栏
[layouts]
[[default]]
[[[child1]]]
type = Terminal
parent = window0
profile = default
[[[window0]]]
type = Window
parent = ""
[plugins]

see also

Terminator快捷键汇总

Terminator终端的安装,配置以及如何修改默认终端


Linux 好用Termitor 终端配置

https://blog.csdn.net/ipatient/article/details/51547658

https://blog.csdn.net/zhangkzz/article/details/90524066

https://blog.csdn.net/moondog123/article/details/88584075

https://blog.csdn.net/tansir94/article/details/81410450


21款最佳Linux命令行终端工具


Terminator的安装和配置(颜色和字体)

5分钟入手Terminator

超越iTerm2!Linux下更好用的终端工具my-terminator


最完整的Terminator快捷键 http://www.cnblogs.com/telnetning/archive/2013/05/18/3084819.html

非常 好的教程呀 http://terminator-gtk3.readthedocs.io/en/latest/gettingstarted.html#the-context-menu

https://www.tecmint.com/terminator-a-linux-terminal-emulator-to-manage-multiple-terminal-windows/

https://launchpad.net/terminator

5分钟入手Terminator http://www.jianshu.com/p/cee2de32ca28

terminix

Terminix – A New GTK 3 Tiling Terminal Emulator for Linux https://www.tecmint.com/terminix-tiling-terminal-emulator-for-linux/

https://linux.cn/article-7611-1.html https://github.com/gnunn1/tilix

Linux--Terminator 必备快捷键