Default_NoExitState_Ubuntu.bgptheme 780 B

12345678910111213141516
  1. # This is the default theme for gitprompt.sh
  2. # without the indicator of the last command state
  3. # tweaked for Ubuntu terminal fonts
  4. override_git_prompt_colors() {
  5. GIT_PROMPT_THEME_NAME="Default NoExitState Ubuntu"
  6. GIT_PROMPT_STAGED="${Red}● " # the number of staged files/directories
  7. GIT_PROMPT_CLEAN="${BoldGreen}✔ " # a colored flag indicating a "clean" repo
  8. GIT_PROMPT_COMMAND_OK="${Green}✔ " # indicator if the last command returned with an exit code of 0
  9. GIT_PROMPT_COMMAND_FAIL="${Red}✘ " # indicator if the last command returned with an exit code of other than 0
  10. GIT_PROMPT_START_USER="${Yellow}${PathShort}${ResetColor}"
  11. GIT_PROMPT_START_ROOT="${GIT_PROMPT_START_USER}"
  12. }
  13. reload_git_prompt_colors "Default NoExitState Ubuntu"