summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dotfiles/bashrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dotfiles/bashrc b/dotfiles/bashrc
index 1d4f72a..202c0b4 100644
--- a/dotfiles/bashrc
+++ b/dotfiles/bashrc
@@ -24,14 +24,14 @@ _format_wd ()
pparent=$(basename $(dirname $parent))
if test $pparent != "/"; then
echo -n "$parent/";
- tput bold; echo -n $base; tput sgr0
+ echo -n $base;
else
if test $parent != "/"; then
echo -n "/$parent/"
- tput bold; echo -n $base; tput sgr0
+ echo -n $base;
else
echo -n "/";
- tput bold; echo -n $base; tput sgr0
+ echo -n $base;
fi
fi
}