.bashrc
if [ "$color_prompt" = yes ]; then
# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' # ここを変更
# ユーザー名/コンピュータ名を非表示
# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
# ユーザー名/コンピュータ名を任意ものに変更
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]fumiya.org✜ASUS\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
# note:: `PS1=\$`で定義してもいいが、それだとカレントディレクトリの表示とかもされなくなってしまい不便
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi