Linuxのプロンプトカラー変更

以下のコマンドを打った時の青文字部分を変更する。 cat .bashrc | grep -E "PS1" -C 2 if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w \$\[\033[00m\] ' else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' fi unset color_pro…