if [ "$PS1" ]; then
if [ "$(id -u)" -eq 0 ]; then # rootユーザの場合
PS1='\[\e[0;31m\][\u@\H \W]#\[\e[0m\] '
else # 一般ユーザの場合
PS1='\[\e[0;32m\][\u@\H \W]\$\[\e[0m\] '
fi
fi
# 一般ユーザ向けのプロンプト設定
if [ "$PS1" ]; then
if [ "$(id -u)" -eq 0 ]; then # rootユーザの場合
PS1='\[\e[0;31m\][\u@\H \W]#\[\e[0m\] '
else # 一般ユーザの場合
PS1='\[\e[0;32m\][\u@\H \W]\$\[\e[0m\] '
fi
fi
rootの設定ファイル
/root/.bashrc
末尾に以下を追記します。
# rootユーザ向けのプロンプト設定
if [ "$PS1" ]; then
PS1='\[\e[0;31m\][\u@\H \W]#\[\e[0m\] '
fi