junkfood.zsh-theme 1.1 KB

123456789101112131415161718192021222324252627282930
  1. # Totally ripped off Dallas theme
  2. # Grab the current date (%W) and time (%t):
  3. JUNKFOOD_TIME_="%{$fg_bold[red]%}#%{$fg_bold[white]%}( %{$fg_bold[yellow]%}%W%{$reset_color%}@%{$fg_bold[white]%}%t )( %{$reset_color%}"
  4. # Grab the current machine name
  5. JUNKFOOD_MACHINE_="%{$fg_bold[blue]%}%m%{$fg[white]%} ):%{$reset_color%}"
  6. # Grab the current username
  7. JUNKFOOD_CURRENT_USER_="%{$fg_bold[green]%}%n%{$reset_color%}"
  8. # Grab the current filepath, use shortcuts: ~/Desktop
  9. # Append the current git branch, if in a git repository: ~aw@master
  10. JUNKFOOD_LOCA_="%{$fg[cyan]%}%~\$(git_prompt_info)%{$reset_color%}"
  11. # For the git prompt, use a white @ and blue text for the branch name
  12. ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}@%{$fg_bold[white]%}"
  13. # Close it all off by resetting the color and styles.
  14. ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
  15. # Do nothing if the branch is clean (no changes).
  16. ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}✔"
  17. # Add 3 cyan ✗s if this branch is diiirrrty! Dirty branch!
  18. ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}✗✗✗"
  19. # Put it all together!
  20. PROMPT="$JUNKFOOD_TIME_$JUNKFOOD_CURRENT_USER_@$JUNKFOOD_MACHINE_$JUNKFOOD_LOCA_
  21. "