Compare commits
3 Commits
e29862ff82
...
trunk
Author | SHA1 | Date | |
---|---|---|---|
|
2def06fb51 | ||
|
bc14813bbb | ||
|
96c7934a83 |
@@ -20,5 +20,19 @@ function rprompt_builder () {
|
||||
print "${result}"
|
||||
}
|
||||
|
||||
PROMPT='$(prompt_builder)'
|
||||
RPROMPT='$(rprompt_builder)'
|
||||
|
||||
if [[ $cols -lt 80 ]]; then
|
||||
if [[ $(uname -o) == "Android" ]]; then
|
||||
hostemoji="📞"
|
||||
else
|
||||
hostemoji="🖥"
|
||||
fi
|
||||
PROMPT="👤%{$fg_bold[white]%}@${hostemoji} %~ %# %{$reset_color%}"
|
||||
else
|
||||
PROMPT='$(prompt_builder)'
|
||||
RPROMPT='$(rprompt_builder)'
|
||||
fi
|
||||
TMOUT=60
|
||||
TRAPALRM () {
|
||||
zle reset-prompt
|
||||
}
|
@@ -10,7 +10,7 @@ function zeesh_update () {
|
||||
|
||||
_zshrc_updates_pending=0
|
||||
|
||||
if type md5sum &> /dev/null; then
|
||||
if type cmp &> /dev/null; then
|
||||
cmp -s ~/.zshrc ~/.local/share/zeesh/zshrc-stub
|
||||
if [[ $? -eq 1 ]]; then
|
||||
cp ~/.local/share/zeesh/zshrc-stub ~/.zshrc
|
||||
|
@@ -26,7 +26,7 @@ function git_prompt() {
|
||||
else
|
||||
branchname=${fullbranchname}
|
||||
# output a warning to stderr, convenience for maintenance
|
||||
echo "warning: unrecognized branch type ${branchtype}" >&2
|
||||
#echo "warning: unrecognized branch type ${branchtype}" >&2
|
||||
fi
|
||||
|
||||
print "%{$fg_bold[yellow]%}${branchname} %{$reset_color%}%{$fg[yellow]%}${commithash}"
|
||||
|
16
zeesh.zsh
16
zeesh.zsh
@@ -3,22 +3,6 @@ source ~/.local/share/zeesh/base/zeesh.zsh
|
||||
|
||||
ticker_message "zeesh: bootstrap"
|
||||
|
||||
if [[ $cols -lt 80 ]]; then
|
||||
if [[ $(uname -o) == "Android" ]]; then
|
||||
hostemoji="📞"
|
||||
else
|
||||
hostemoji="🖥"
|
||||
fi
|
||||
PROMPT="👤%{$fg_bold[white]%}@${hostemoji} %~ %# %{$reset_color%}"
|
||||
#else
|
||||
# PROMPT="%{$fg_bold[cyan]%}%n%{$fg_bold[white]%}@%{$fg_bold[magenta]%}%m %{$fg_bold[white]%}%~ %# %{$reset_color%}"
|
||||
# RPROMPT="%(?..%{$fg[red]%}%? )$RPROMPT"
|
||||
fi
|
||||
TMOUT=60
|
||||
TRAPALRM () {
|
||||
zle reset-prompt
|
||||
}
|
||||
|
||||
source ~/.local/share/zeesh/base/precmd.zsh
|
||||
source ~/.local/share/zeesh/base/prompt.zsh
|
||||
source ~/.local/share/zeesh/base/updates.zsh
|
||||
|
Reference in New Issue
Block a user