mirror of https://github.com/bjeanes/dotfiles.git
14 lines
219 B
Bash
14 lines
219 B
Bash
|
function prompt_pwd() {
|
||
|
if osx; then
|
||
|
extended="-E"
|
||
|
else
|
||
|
extended="-re"
|
||
|
fi
|
||
|
|
||
|
echo `pwd|sed -e "s|$HOME|~|"|sed -E "s|([^/])[^/]+/|\1/|g"`
|
||
|
}
|
||
|
|
||
|
function precmd() {
|
||
|
PS1="$(user_at_host)$(prompt_pwd) ♪ "
|
||
|
}
|