mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
New theme based on kphoen with time
This commit is contained in:
parent
61e3951e4b
commit
21893a2c77
1 changed files with 50 additions and 0 deletions
50
themes/kptime.zsh-theme
Normal file
50
themes/kptime.zsh-theme
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# FILE: kptime.zsh-theme
|
||||||
|
# DESCRIPTION: oh-my-zsh theme file.
|
||||||
|
# AUTHOR: Sergio Lopez (serpro@gmail.com) [Based on kphoen theme by Kévin Gomez (geek63@gmail.com)]
|
||||||
|
# VERSION: 1.0.0
|
||||||
|
# SCREENSHOT:
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then
|
||||||
|
#PROMPT='[%{$fg[red]%}%n%{$reset_color%}@%{$fg[magenta]%}%m%{$reset_color%}:%{$fg[blue]%}%~%{$reset_color%}$(git_prompt_info)]
|
||||||
|
PROMPT='[%{$fg[red]%}%n%{$reset_color%}@%{$fg[magenta]%}`date +"%H:%M:%S"`%{$reset_color%}:%{$fg[blue]%}%~%{$reset_color%}$(git_prompt_info)]
|
||||||
|
%# '
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=""
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
|
||||||
|
# display exitcode on the right when >0
|
||||||
|
return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||||
|
|
||||||
|
RPROMPT='${return_code}$(git_prompt_status)%{$reset_color%}'
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
|
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
|
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
|
||||||
|
else
|
||||||
|
PROMPT='[%n@%m:%~$(git_prompt_info)]
|
||||||
|
%# '
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" on"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=""
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=""
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
|
||||||
|
# display exitcode on the right when >0
|
||||||
|
return_code="%(?..%? ↵)"
|
||||||
|
|
||||||
|
RPROMPT='${return_code}$(git_prompt_status)'
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED=" ✚"
|
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED=" ✹"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED=" ✖"
|
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED=" ➜"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED=" ═"
|
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED=" ✭"
|
||||||
|
fi
|
||||||
Loading…
Add table
Add a link
Reference in a new issue