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