junkfood.zsh-theme 1.3 KB

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