We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ee2daa9 + 3fcb911 commit e7eada5Copy full SHA for e7eada5
1 file changed
gruvbox.zsh-theme
@@ -91,7 +91,11 @@ prompt_context() {
91
# if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
92
# prompt_segment 237 7 "%(!.%{%F{3}%}.)%n@%m"
93
# fi
94
- prompt_segment 237 7 "\ue29e"
+ case "$OSTYPE" in
95
+ darwin*) OS_LOGO="\ue29e" ;;
96
+ linux*) OS_LOGO="\ue712" ;;
97
+ esac
98
+ prompt_segment 237 7 $OS_LOGO
99
}
100
101
# Git: branch/detached head, dirty status
0 commit comments