summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bash/bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bashrc b/bash/bashrc
index f1fd127..6521beb 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -21,9 +21,9 @@ ncolors=$(tput colors)
if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
# color support
- export PS1="\[\033[1;36m\]\u@\h\[\033[0m\] \[\033[1;35m\]\w\[\033[0m\] \[\033[1;34m\]\$\[\033[0m\] "
+ export PS1="\[\033[1;36m\]\u@\h\[\033[0m\] \[\033[1;35m\]\${PWD}\[\033[0m\] \[\033[1;34m\]\\\$\[\033[0m\] "
else
- export PS1="\u@\h \w \$ "
+ export PS1="\u@\h \${PWD} \\\$ "
fi
alias tmux='t'