smt.zsh-theme 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # -----------------------------------------------------------------------------
  2. # FILE: smt.zsh-theme
  3. # DESCRIPTION: oh-my-zsh theme file, based on dogenpunk by Matthew Nelson.
  4. # AUTHOR: Stephen Tudor (stephen@tudorstudio.com
  5. # VERSION: 0.1
  6. # SCREENSHOT: coming soon
  7. # -----------------------------------------------------------------------------
  8. MODE_INDICATOR="%{$fg_bold[red]%}❮%{$reset_color%}%{$fg[red]%}❮❮%{$reset_color%}"
  9. local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%} "
  10. ZSH_THEME_GIT_PROMPT_PREFIX="|"
  11. ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
  12. ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}⚡%{$reset_color%}"
  13. ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_bold[red]%}!%{$reset_color%}"
  14. ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}✓%{$reset_color%}"
  15. ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
  16. ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
  17. ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
  18. ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
  19. ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
  20. ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
  21. # Format for git_prompt_long_sha() and git_prompt_short_sha()
  22. ZSH_THEME_GIT_PROMPT_SHA_BEFORE="➤ %{$fg_bold[yellow]%}"
  23. ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$reset_color%}"
  24. function prompt_char() {
  25. git branch >/dev/null 2>/dev/null && echo "%{$fg[green]%}±%{$reset_color%}" && return
  26. hg root >/dev/null 2>/dev/null && echo "%{$fg_bold[red]%}☿%{$reset_color%}" && return
  27. darcs show repo >/dev/null 2>/dev/null && echo "%{$fg_bold[green]%}❉%{$reset_color%}" && return
  28. echo "%{$fg[cyan]%}◯%{$reset_color%}"
  29. }
  30. # Colors vary depending on time lapsed.
  31. ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}"
  32. ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}"
  33. ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}"
  34. ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[cyan]%}"
  35. # Determine the time since last commit. If branch is clean,
  36. # use a neutral color, otherwise colors will vary according to time.
  37. function git_time_since_commit() {
  38. if git rev-parse --git-dir > /dev/null 2>&1; then
  39. # Only proceed if there is actually a commit.
  40. if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then
  41. # Get the last commit.
  42. last_commit=`git log --pretty=format:'%at' -1 2> /dev/null`
  43. now=`date +%s`
  44. seconds_since_last_commit=$((now-last_commit))
  45. # Totals
  46. MINUTES=$((seconds_since_last_commit / 60))
  47. HOURS=$((seconds_since_last_commit/3600))
  48. # Sub-hours and sub-minutes
  49. DAYS=$((seconds_since_last_commit / 86400))
  50. SUB_HOURS=$((HOURS % 24))
  51. SUB_MINUTES=$((MINUTES % 60))
  52. if [[ -n $(git status -s 2> /dev/null) ]]; then
  53. if [ "$MINUTES" -gt 30 ]; then
  54. COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG"
  55. elif [ "$MINUTES" -gt 10 ]; then
  56. COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM"
  57. else
  58. COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT"
  59. fi
  60. else
  61. COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
  62. fi
  63. if [ "$HOURS" -gt 24 ]; then
  64. echo "[$COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}]"
  65. elif [ "$MINUTES" -gt 60 ]; then
  66. echo "[$COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}]"
  67. else
  68. echo "[$COLOR${MINUTES}m%{$reset_color%}]"
  69. fi
  70. else
  71. COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
  72. echo "[$COLOR~]"
  73. fi
  74. fi
  75. }
  76. PROMPT='
  77. %{$fg[blue]%}%m%{$reset_color%} 福 %{$fg[cyan]%}%~ %{$reset_color%}$(git_prompt_short_sha)$(git_prompt_info)
  78. %{$fg[red]%}%!%{$reset_color%} $(prompt_char) : '
  79. RPROMPT='${return_status}$(git_time_since_commit)$(git_prompt_status)%{$reset_color%}'