# HG changeset patch # User nanaya # Date 1666457852 -32400 # Node ID 92c1a021e8a12e29bd316367c20c252f89b80ca6 # Parent 37a2470380f2da025472ee36deaf44b37b641bc6 [bashrc] Let's just assume it's been fixed in dfbsd diff -r 37a2470380f2 -r 92c1a021e8a1 rc/bashrc --- a/rc/bashrc Sun Oct 23 01:56:54 2022 +0900 +++ b/rc/bashrc Sun Oct 23 01:57:32 2022 +0900 @@ -254,8 +254,7 @@ PROMPT_COMMAND='echo -ne "\033]0;'"${USER:-${LOGNAME:-$USERNAME}}@$(uname -n)"': ${PWD}\007";'"${PROMPT_COMMAND}" if [ "${_uid}" = "0" ]; then PS1='\[\e[1;31m\]\u@\h:\w\$\[\e[0m\] ' - elif [ "$(uname)" != "DragonFly" ]; then - # DragonFly's Bash is a bit buggy. + else PS1='\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;36m\]\w\[\e[0m\]\$ ' fi ;;