2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Terminator on Ubuntu16.04

Last updated at Posted at 2018-02-09

はじめに

iTermのような画面分割が可能なターミナルソフトを探していてTerminatorを使い始めました。
自分が使う範囲の知識をまとめます。

よく使う操作

操作 キー
画面を縦に分割 ctrl + shift + e
画面を横に分割 ctrl + shift + o
分割を解除 ctrl + shift + d
分割した画面間を移動 alt + ↑↓←→
ターミナルを消去してリセット ctrl + shift + g
新規ターミネーター super + i

インストール

sudo apt-get install terminator

お気に入りのレイアウトの保存、呼び出し

  • Terminatorを開き、好みの画面サイズ、レイアウトにする
  • 設定>レイアウト を開き、追加をクリック。任意の名前をつけ保存
    ※この設定が完了した時点で下記コマンドを実行すると設定したレイアウトで表示されます。
terminator -l 任意の名前
  • レイアウト呼び出し用にエイリアスを登録
~/.bashrc
alias 任意のエイリアス名='terminator -l 任意の名前&exit' #追記
source ~/.bashrc

ターミナルで任意のエイリアス名を実行すると、登録したレイアウトが呼び出される。

参考

cryborgのRoboticsブログ

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?