Compare commits
2 Commits
e29862ff82
...
bc14813bbb
Author | SHA1 | Date | |
---|---|---|---|
|
bc14813bbb | ||
|
96c7934a83 |
@ -20,5 +20,19 @@ function rprompt_builder () {
|
|||||||
print "${result}"
|
print "${result}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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)'
|
PROMPT='$(prompt_builder)'
|
||||||
RPROMPT='$(rprompt_builder)'
|
RPROMPT='$(rprompt_builder)'
|
||||||
|
fi
|
||||||
|
TMOUT=60
|
||||||
|
TRAPALRM () {
|
||||||
|
zle reset-prompt
|
||||||
|
}
|
@ -10,7 +10,7 @@ function zeesh_update () {
|
|||||||
|
|
||||||
_zshrc_updates_pending=0
|
_zshrc_updates_pending=0
|
||||||
|
|
||||||
if type md5sum &> /dev/null; then
|
if type cmp &> /dev/null; then
|
||||||
cmp -s ~/.zshrc ~/.local/share/zeesh/zshrc-stub
|
cmp -s ~/.zshrc ~/.local/share/zeesh/zshrc-stub
|
||||||
if [[ $? -eq 1 ]]; then
|
if [[ $? -eq 1 ]]; then
|
||||||
cp ~/.local/share/zeesh/zshrc-stub ~/.zshrc
|
cp ~/.local/share/zeesh/zshrc-stub ~/.zshrc
|
||||||
|
16
zeesh.zsh
16
zeesh.zsh
@ -3,22 +3,6 @@ source ~/.local/share/zeesh/base/zeesh.zsh
|
|||||||
|
|
||||||
ticker_message "zeesh: bootstrap"
|
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/precmd.zsh
|
||||||
source ~/.local/share/zeesh/base/prompt.zsh
|
source ~/.local/share/zeesh/base/prompt.zsh
|
||||||
source ~/.local/share/zeesh/base/updates.zsh
|
source ~/.local/share/zeesh/base/updates.zsh
|
||||||
|
Loading…
Reference in New Issue
Block a user