茉莉飘香 發表於 2021-12-1 18:31:00

Terminator--最强Ubuntu终端

<blockquote>
<p>个人使用的一个非常好用的<code>Ubuntu</code>终端软件。</p>
</blockquote>
<h1 id="terminator的安装和配置">Terminator的安装和配置</h1>
<h2 id="安装">安装</h2>
<h3 id="ubuntu"><code>Ubuntu</code></h3>
<pre><code class="language-shell">sudo add-apt-repository ppa:gnome-terminator

sudo apt-get update

sudo apt-get install terminator
</code></pre>
<h3 id="其他发行版">其他发行版</h3>
<p>这是官网,其他的靠你自己了。</p>
<h3 id="快捷键">快捷键</h3>
<table>
<thead>
<tr>
<th>行动</th>
<th>选项</th>
<th>默认快捷方式</th>
</tr>
</thead>
<tbody>
<tr>
<td>新实例</td>
<td></td>
<td><code>Super</code>+<code>I</code></td>
</tr>
<tr>
<td>新窗户</td>
<td></td>
<td><code>Shift</code>+ <code>Ctrl</code>+<code>I</code></td>
</tr>
<tr>
<td>新标签</td>
<td></td>
<td><code>Shift</code>+ <code>Ctrl</code>+<code>T</code></td>
</tr>
<tr>
<td>分体式终端</td>
<td>水平、垂直</td>
<td><code>Shift</code>+ <code>Ctrl</code>+ <code>O</code>/<code>E</code></td>
</tr>
<tr>
<td>隐藏窗口</td>
<td></td>
<td><code>Shift</code>+ <code>Ctrl</code>+ <code>Alt</code>+<code>A</code></td>
</tr>
<tr>
<td>关闭窗口</td>
<td></td>
<td><code>Shift</code>+ <code>Ctrl</code>+<code>Q</code></td>
</tr>
<tr>
<td>关闭终端</td>
<td></td>
<td><code>Shift</code>+ <code>Ctrl</code>+<code>W</code></td>
</tr>
<tr>
<td>切换全屏</td>
<td></td>
<td><code>F11</code></td>
</tr>
<tr>
<td>调整终端大小</td>
<td>上下左右</td>
<td><code>Shift</code>+ <code>Ctrl</code>+<code>&lt;Arrow&gt;</code></td>
</tr>
<tr>
<td>旋转端子</td>
<td>(反)顺时针</td>
<td>( <code>Shift</code>+) <code>Super</code>+<code>R</code></td>
</tr>
<tr>
<td>移动标签</td>
<td>左右</td>
<td><code>Shift</code>+ <code>Ctrl</code>+ <code>PgUp</code>/<code>PgDn</code></td>
</tr>
<tr>
<td>变焦终端</td>
<td></td>
<td><code>Shift</code>+ <code>Ctrl</code>+<code>Z</code></td>
</tr>
<tr>
<td>最大化终端</td>
<td></td>
<td><code>Shift</code>+ <code>Ctrl</code>+<code>X</code></td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th></th>
<th>这是一个单独的过程。因此,拖放将无法正常工作或从这个新窗口,或者随后的窗口中使用发动<code>Shift</code>+ <code>Ctrl</code>+ <code>I</code>,而重点是在新的实例。</th>
</tr>
</thead>
</table>
<table>
<thead>
<tr>
<th></th>
<th>隐藏窗口目前仅适用于您启动的第一个终结器实例的第一个窗口。这是因为目前它全局绑定了快捷方式(它必须,否则无法取消隐藏)并且只能完成一次。这在未来可能会改变。</th>
</tr>
</thead>
</table>
<h2 id="配置主题">配置主题</h2>
<pre><code class="language-shell">vim ~/.config/terminator/config
</code></pre>
<pre><code class="language-ini">
enabled_plugins = InactivityWatch, CustomCommandsMenu, TestPlugin, ActivityWatch, TerminalShot, LaunchpadCodeURLHandler, APTURLHandler, Logger, MavenPluginURLHandler, LaunchpadBugURLHandler
focus = system
geometry_hinting = True
suppress_multiple_term_dialog = True
title_transmit_bg_color = "#d30102"
window_state = maximise


[]
    [[]]
      parent = window0
      profile = default
      type = Terminal
    [[]]
      parent = ""
      type = Window


[]
    background_color = "#2d2d2d"
    background_darkness = 0.85
    background_type = transparent
    copy_on_selection = True
    cursor_color = "#FFFFFF"
    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

</code></pre>
<p>按照上面的做,应该会改变主题。</p>
<p>如果想要更多的主题。请点击<strong> terminator-themes</strong>。</p><br><br>
来源:https://www.cnblogs.com/hokori/p/15630216.html
頁: [1]
查看完整版本: Terminator--最强Ubuntu终端