mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
fork jz theme
This commit is contained in:
parent
f32c9c8fa7
commit
b3f5588724
1 changed files with 6 additions and 33 deletions
|
|
@ -1,45 +1,18 @@
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# FILE: jz.zsh-theme
|
# FILE: kphoen.zsh-theme
|
||||||
# DESCRIPTION: oh-my-zsh theme file.
|
# DESCRIPTION: oh-my-zsh theme file.
|
||||||
# AUTHOR: Justin Zhu (haoranjzhu@gmail.com)
|
# AUTHOR: Kévin Gomez (geek63@gmail.com)
|
||||||
# VERSION: 1.0.0
|
# VERSION: 1.0.0
|
||||||
# SCREENSHOT:
|
# SCREENSHOT:
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
# Shows background jobs:
|
|
||||||
# #jobs Display
|
|
||||||
# 0 Nothing
|
|
||||||
# 1-9 [bg:#jobs] in yellow
|
|
||||||
# > 10 [bg:#jobs] in red
|
|
||||||
job_bg() {
|
|
||||||
local JC=$(jobs -r | grep running | wc -l)
|
|
||||||
if [[ JC -gt 10 ]]; then
|
|
||||||
echo "%{$fg[red]%}[bg:${JC}]%{$reset_color%}"
|
|
||||||
elif [[ JC -gt 0 ]]; then
|
|
||||||
echo "%{$fg[yellow]%}[bg:${JC}]%{$reset_color%}"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Shows suspended jobs:
|
|
||||||
# #jobs Display
|
|
||||||
# 0 Nothing
|
|
||||||
# 1-2 [sp:#jobs] in yellow
|
|
||||||
# > 2 [bg:#jobs] in red
|
|
||||||
job_sp() {
|
|
||||||
local JC=$(jobs -s | grep suspended | wc -l)
|
|
||||||
if [[ JC -gt 2 ]]; then
|
|
||||||
echo "%{$fg[red]%}[sp:${JC}]%{$reset_color%}"
|
|
||||||
elif [[ JC -gt 0 ]]; then
|
|
||||||
echo "%{$fg[yellow]%}[sp:${JC}]%{$reset_color%}"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then
|
if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then
|
||||||
PROMPT='%{$fg[blue]%}[%{$fg[red]%}%n%{$FG[242]%}@%{$fg[magenta]%}%m%{$reset_color%}:%{$fg[blue]%}%~]%{$reset_color%}$(git_prompt_info)$(job_bg)$(job_sp)
|
PROMPT='[%{$fg[red]%}%n%{$reset_color%}@%{$fg[magenta]%}%m%{$reset_color%}:%{$fg[blue]%}%~%{$reset_color%}$(git_prompt_info)]
|
||||||
%(?.%{$fg_bold[green]%}❯.%{$fg_bold[red]%}❯)%{$reset_color%} '
|
%# '
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}["
|
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}"
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY=""
|
ZSH_THEME_GIT_PROMPT_DIRTY=""
|
||||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue