Gitiles
Code Review
Sign In
source.supwisdom.com
/
common
/
bash_it
/
b8ce9e629cbbfa7906416db5a65ec2d36e9dc6e1
/
.
/
themes
/
minimal
/
minimal.theme.bash
blob: 96d0a8b9bbe70ad6450354e8ae44aa35e1eb0967 [
file
] [
log
] [
blame
]
Mark Szymanski
a3dcbef
2010-10-12 17:34:00 -0500
[
diff
] [
blame
]
1
prompt_setter
()
{
2
if
[[
$
?
-
eq
0
]];
then
3
PS1
=
"\W "
4
else
5
PS1
=
"${red}\W ${reset_color}"
6
fi
7
}
8
9
PROMPT_COMMAND
=
prompt_setter