From 9c7283eef95eb0a34c9de994494772110a1969f8 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 18 Oct 2023 21:10:52 +0200 Subject: [PATCH] highlight path --- usr/share/archboot/base/etc/profile.d/custom-bash-options.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/share/archboot/base/etc/profile.d/custom-bash-options.sh b/usr/share/archboot/base/etc/profile.d/custom-bash-options.sh index 1bb85ce44..2c9f58010 100644 --- a/usr/share/archboot/base/etc/profile.d/custom-bash-options.sh +++ b/usr/share/archboot/base/etc/profile.d/custom-bash-options.sh @@ -6,10 +6,10 @@ [[ $- == *i* ]] || return if [[ "${UID}" == 0 ]]; then # red for root user, host green, print full working dir - PS1='[\[\e[1;31m\]\u\[\e[m\]@\[\e[1;32m\]\h\[\e[m\] \w]\$ ' + PS1='[\[\e[1;31m\]\u\[\e[m\]@\[\e[1;32m\]\h\[\e[m\] \e[1m\w\e[m]\$ ' else # blue for normal user,host green, print full working dir - PS1='[\[\e[1;34m\]\u\[\e[m\]@\[\e[1;32m\]\h\[\e[m\] \w]\$ ' + PS1='[\[\e[1;34m\]\u\[\e[m\]@\[\e[1;32m\]\h\[\e[m\] \e[1m\w\e[m]]\$ ' fi # color man pages export GROFF_NO_SGR=1