dotfiles/dot_oh-my-zsh/custom/prompt.zsh

6 lines
190 B
Bash
Raw Normal View History

2023-03-09 18:41:45 +00:00
# removes user@hostname from agnoster prompt
prompt_context() {
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
prompt_segment black default "%(!.%{%F{yellow}%}.)"
fi
}