Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
aa99472c
Unverified
Commit
aa99472c
authored
Dec 13, 2021
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style(simonoff): fix code style and optimize use of variables
parent
134c1ada
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
83 deletions
+48
-83
simonoff.zsh-theme
themes/simonoff.zsh-theme
+48
-83
No files found.
themes/simonoff.zsh-theme
View file @
aa99472c
# Prompt
function theme_precmd {
#
# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
function precmd {
local TERMWIDTH
(( TERMWIDTH = ${COLUMNS} - 1 ))
###
# Truncate the path if it's too long.
PR_FILLBAR=""
PR_FILLBAR=""
PR_PWDLEN=""
PR_PWDLEN=""
local promptsize=${#${(%):--
-(%n@%M:%l)---()
}}
local promptsize=${#${(%):--
(%n@%M:)--(%l)-
}}
local pwdsize=${#${(%):-%~}}
local pwdsize=${#${(%):-%~}}
local gitbranch="$(git_prompt_info)"
local gitbranchsize="${#${(%)$(git_prompt_info)}:-}"
local rvmprompt="$(ruby_prompt_info)"
local rvmpromptsize="${#${(%)$(ruby_prompt_info):-}}"
local gitbranchsize=${#${gitbranch:-''}}
local rvmpromptsize=${#${rvmprompt:-''}}
if [[ "$promptsize + $pwdsize + $rvmpromptsize + $gitbranchsize" -gt $TERMWIDTH ]]; then
# Truncate the path if it's too long.
((PR_PWDLEN=$TERMWIDTH - $promptsize))
if (( promptsize + pwdsize + rvmpromptsize + gitbranchsize > COLUMNS )); then
(( PR_PWDLEN = COLUMNS - promptsize ))
else
else
PR_FILLBAR="\${(l.
(($TERMWIDTH - ($promptsize + $pwdsize + $rvmpromptsize + $gitbranchsize)
))..${PR_SPACE}.)}"
PR_FILLBAR="\${(l.
$(( COLUMNS - (promptsize + pwdsize + rvmpromptsize + gitbranchsize)
))..${PR_SPACE}.)}"
fi
fi
}
}
function theme_preexec {
setopt extended_glob
setopt local_options extended_glob
preexec () {
if [[ "$TERM" == "screen" ]]; then
if [[ "$TERM" == "screen" ]]; then
local CMD=${1[(wr)^(*=*|sudo|-*)]}
local CMD=${1[(wr)^(*=*|sudo|-*)]}
echo -n "\ek$CMD\e\\"
echo -n "\ek$CMD\e\\"
...
@@ -53,47 +32,41 @@ preexec () {
...
@@ -53,47 +32,41 @@ preexec () {
}
}
setprompt () {
autoload -U add-zsh-hook
###
add-zsh-hook precmd theme_precmd
# Need this so the prompt will work.
add-zsh-hook preexec theme_preexec
setopt prompt_subst
# Set the prompt
# Need this so the prompt will work.
setopt prompt_subst
###
# See if we can use colors.
# See if we can use colors.
autoload zsh/terminfo
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE GREY; do
print -v "PR_$color" "%{$terminfo[bold]$fg[${(L)color}]%}"
print -v "PR_LIGHT_$color" "%{$fg[${(L)color}]%}"
done
PR_NO_COLOUR="%{$terminfo[sgr0]%}"
# Use extended characters to look nicer
PR_HBAR="-"
PR_ULCORNER="-"
PR_LLCORNER="-"
PR_LRCORNER="-"
PR_URCORNER="-"
# Modify Git prompt
ZSH_THEME_GIT_PROMPT_PREFIX=" ["
ZSH_THEME_GIT_PROMPT_SUFFIX="]"
# Modify RVM prompt
ZSH_THEME_RUBY_PROMPT_PREFIX=" ["
ZSH_THEME_RUBY_PROMPT_SUFFIX="]"
autoload zsh/terminfo
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
(( count = $count + 1 ))
done
PR_NO_COLOUR="%{$terminfo[sgr0]%}"
###
# See if we can use extended characters to look nicer.
PR_HBAR=${altchar[q]:--}
PR_ULCORNER=${altchar[l]:--}
PR_LLCORNER=${altchar[m]:--}
PR_LRCORNER=${altchar[j]:--}
PR_URCORNER=${altchar[k]:--}
###
# Modify Git prompt
ZSH_THEME_GIT_PROMPT_PREFIX=" ["
ZSH_THEME_GIT_PROMPT_SUFFIX="]"
###
# Modify RVM prompt
ZSH_THEME_RUBY_PROMPT_PREFIX=" ["
ZSH_THEME_RUBY_PROMPT_SUFFIX="]"
###
# Decide if we need to set titlebar text.
# Decide if we need to set titlebar text.
case $TERM in
case $TERM in
xterm*|*rxvt*)
xterm*|*rxvt*)
PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%M:%~ $(git_prompt_info) $(rvm_prompt_info) | ${COLUMNS}x${LINES} | %y\a%}'
PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%M:%~ $(git_prompt_info) $(rvm_prompt_info) | ${COLUMNS}x${LINES} | %y\a%}'
;;
;;
...
@@ -101,26 +74,22 @@ setprompt () {
...
@@ -101,26 +74,22 @@ setprompt () {
PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}'
PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}'
;;
;;
*)
*)
PR_TITLEBAR=
''
PR_TITLEBAR=
""
;;
;;
esac
esac
###
# Decide whether to set a screen title
# Decide whether to set a screen title
if [[ "$TERM" == "screen" ]]; then
if [[ "$TERM" == "screen" ]]; then
PR_STITLE=$'%{\ekzsh\e\\%}'
PR_STITLE=$'%{\ekzsh\e\\%}'
else
else
PR_STITLE=''
PR_STITLE=""
fi
fi
###
# Finally, the prompt.
# Finally, the prompt.
#
PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\
PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\
$PR_RED$PR_HBAR<\
$PR_RED$PR_HBAR<\
$PR_BLUE%(!.$PR_RED%SROOT%s.%n)$PR_GREEN@$PR_BLUE%M:$PR_GREEN%$PR_PWDLEN<...<%~$PR_CYAN$(git_prompt_info)$(rvm_prompt_info)\
$PR_BLUE%(!.$PR_RED%SROOT%s.%n)$PR_GREEN@$PR_BLUE%M:$PR_GREEN%$PR_PWDLEN<...<%~$PR_CYAN$(git_prompt_info)$(rvm_prompt_info)\
$PR_RED>$PR_HBAR$
PR_SPACE$
{(e)PR_FILLBAR}\
$PR_RED>$PR_HBAR${(e)PR_FILLBAR}\
$PR_RED$PR_HBAR<\
$PR_RED$PR_HBAR<\
$PR_GREEN%l$PR_RED>$PR_HBAR\
$PR_GREEN%l$PR_RED>$PR_HBAR\
...
@@ -128,7 +97,3 @@ $PR_RED$PR_HBAR<\
...
@@ -128,7 +97,3 @@ $PR_RED$PR_HBAR<\
%(?..$PR_LIGHT_RED%?$PR_BLUE:)\
%(?..$PR_LIGHT_RED%?$PR_BLUE:)\
$PR_LIGHT_BLUE%(!.$PR_RED.$PR_WHITE)%#$PR_RED>$PR_HBAR\
$PR_LIGHT_BLUE%(!.$PR_RED.$PR_WHITE)%#$PR_RED>$PR_HBAR\
$PR_NO_COLOUR '
$PR_NO_COLOUR '
}
setprompt
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment