summaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rwxr-xr-xbash/prompt4
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/prompt b/bash/prompt
index b4a1b87..09a75c7 100755
--- a/bash/prompt
+++ b/bash/prompt
@@ -83,8 +83,10 @@ __prompt_func() {
local prompt_usertype_sign="\\$"
local prompt_git_branch="$white\$(__git_ps1)$normal"
+ local dotfiles_dirty="$red\$([ -f ~/.local/var/dotfiles/dirty ] && echo -n \\\!\ )$normal"
+
# # # # # # # #
#FINAL PROMPT
# # # # # # # #
- echo -n "$prompt_opening_brace $prompt_username@$prompt_hostname_short $prompt_pwd_long$prompt_git_branch$prompt_closing_brace$prompt_usertype_sign "
+ echo -n "$prompt_opening_brace $dotfiles_dirty$prompt_username@$prompt_hostname_short $prompt_pwd_long$prompt_git_branch$prompt_closing_brace$prompt_usertype_sign "
}