From f4103b6fb46741507e8dffe4f1a015a96c12f8c7 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 15 Sep 2010 09:38:06 -0400 Subject: bashrc: Drop the bolding, it screws vte --- dotfiles/bashrc | 6 +++--- 1 file 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 } -- cgit