Skip to content

Instantly share code, notes, and snippets.

@mashihua
Created November 11, 2014 07:28
Show Gist options
  • Save mashihua/d13b25888c176fca2226 to your computer and use it in GitHub Desktop.
Save mashihua/d13b25888c176fca2226 to your computer and use it in GitHub Desktop.
function prompt_char {
val='❯'
if [ $UID -eq 0 ]; then echo "#"; else echo "\033[38;5;265m${val}\033[0m\033[38;5;267m${val}\033[0m\033[38;5;80m${val}"; fi
}
function time_reminder {
knock_time=18
sleep_time=22
cond=$(date +"%H")
if [ $cond -ge $sleep_time ]; then
echo "\033[38;5;11m[♥︎ It's time to go bad]\033 ";
else
if [ $cond -ge $knock_time ]; then
echo "\033[38;5;11m[♥︎ It's time to go home]\033 ";
fi
fi
}
PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[red]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%_$(time_reminder)%_$(prompt_char)%{$reset_color%} '
ZSH_THEME_GIT_PROMPT_PREFIX="("
ZSH_THEME_GIT_PROMPT_SUFFIX=") "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment