sbugzu / gruvbox-zsh

A Gruvbox Theme for zsh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Theme always displays apple logo

JHerseth opened this issue · comments

prompt_segment 237 7 "\ue29e"

The OS logo is hardcoded.
Maybe you could do something like this?

case "$OSTYPE" in
  darwin*)  OS_LOGO="\ue29e" ;; 
  linux*)   OS_LOGO="\ue712" ;;
esac
prompt_segment 237 7 $OS_LOGO

I'm not comfortable with git yet, or else I would have made a PR.

edit: Created a PR

Thank you for the PR.