summaryrefslogtreecommitdiffstats
path: root/dotfiles/bashrc
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-09-15 09:38:06 -0400
committerColin Walters <walters@verbum.org>2010-09-15 09:38:06 -0400
commitf4103b6fb46741507e8dffe4f1a015a96c12f8c7 (patch)
treedf2484cf3b80ebe7522b99962ac9043c98e0daf0 /dotfiles/bashrc
parent5e1fdddfc2725ba0a336302f9e01e39ac346e5b8 (diff)
downloadhomegit-MOVED-TO-GNOME-f4103b6fb46741507e8dffe4f1a015a96c12f8c7.tar.gz
homegit-MOVED-TO-GNOME-f4103b6fb46741507e8dffe4f1a015a96c12f8c7.tar.xz
homegit-MOVED-TO-GNOME-f4103b6fb46741507e8dffe4f1a015a96c12f8c7.zip
bashrc: Drop the bolding, it screws vte
Diffstat (limited to 'dotfiles/bashrc')
-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
}