5
2

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.

Bashプロンプトのカスタマイズ

Last updated at Posted at 2020-01-02

コマンドラインのデフォルトのプロンプトだと [hoge@localhost ~]$ と大体ユーザー名、ホスト名、ディレクトリ名を表示してくれます。
これはこれでいいのですが、Gitステータス情報や時刻も表示できるとより快適です。
ただ、情報が多く横に長くなってしまいコマンドを入力するたびに折り返しが入って見辛いです。

試行錯誤の結果、2行プロンプトにするのが一番利便性が高かったので設定方法をまとめます。

環境

  • Mac
  • 標準ターミナルアプリ
  • Bash

完成形

スクリーンショット 2020-01-01 2.00.56.png

完成形はこの2行プロンプトです。

ディレクトリ名 Gitブランチ名 ユーザー名@PC名 [時:分:秒]
$ 

準備

bash-completion のインストール

Gitのステータス情報を表示するには、 bash-completion をインストールする必要があります。

$ brew install bash-completion

設定

~/.bash_profile
# bash-completion 読み込み
if [ -f $(brew --prefix)/etc/bash_completion.d/git-prompt.sh ]; then
  . $(brew --prefix)/etc/bash_completion.d/git-prompt.sh
fi

if [ -f $(brew --prefix)/etc/bash_completion.d/git-completion.bash ]; then
  . $(brew --prefix)/etc/bash_completion.d/git-completion.bash
fi

# プロンプトカラー設定
_CYAN="\[$(tput setaf 6)\]"
_GREEN="\[$(tput setaf 2)\]"
_YELLOW="\[$(tput setaf 3)\]"
_RESET="\[$(tput sgr0)\]"

# プロンプトに各種情報を表示
GIT_PS1_SHOWUPSTREAM=1
GIT_PS1_SHOWDIRTYSTATE=1
GIT_PS1_SHOWUNTRACKEDFILES=1
GIT_PS1_SHOWSTASHSTATE=1

export PS1="${_CYAN}\w${_GREEN}\$(__git_ps1 ' %s')${_RESET} ${_YELLOW}\u@\h${_RESET} [\t]\n\$ "
unset _CYAN _GREEN _YELLOW _RESET

デフォルトの設定

export PS1="[\u@\h \W]\$ "

参考

5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?