Skip to content

Instantly share code, notes, and snippets.

@smileart
Forked from agnoster/README.md
Last active March 16, 2024 15:42
Show Gist options
  • Star 93 You must be signed in to star a gist
  • Fork 37 You must be signed in to fork a gist
  • Save smileart/3750104 to your computer and use it in GitHub Desktop.
Save smileart/3750104 to your computer and use it in GitHub Desktop.
My ZSH Theme — Agnoster Mod

My modified fork of agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

Compatibility

To test if your terminal and font support it, check that all the necessary characters are supported by copying the following command to your terminal: echo "⮀ ± ⭠ ➦ ✔ ✘ ⚡". The result should look like this:

Character Example

What does it show?

  • Success (✔) or failure (✘) of previous command
  • Hostname
  • Git status
    • Branch (⭠) or detached head (➦)
    • Current branch / SHA1 in detached head state
    • Dirty working directory (±, color change)
  • Working directory
  • Elevated (root) privileges (⚡)

Screenshot

Future Work

I don't want to clutter it up too much, but I am toying with the idea of adding RVM (ruby version) and n (node.js version) display.

It's currently hideously slow, especially inside a git repo. I guess it's not overly so for comparable themes, but it bugs me, and I'd love to hear ideas about how to improve the performance.

Would be nice for the code to be a bit more sane and re-usable. Something to easily append a section with a given FG/BG, and add the correct opening and closing.

Apparently the unicode characters don't display correctly on all systems. It would be nice to be able to say "this font will make it work, always". But what font?

# Original theme https://github.com/agnoster zsh theme
ZSH_THEME_GIT_PROMPT_DIRTY='±'
function _git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="➦ $(git show-ref --head -s --abbrev |head -n1 2> /dev/null)"
echo "${ref/refs\/heads\//⭠ }$(parse_git_dirty)"
}
function _git_info() {
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
local BG_COLOR=green
if [[ -n $(parse_git_dirty) ]]; then
BG_COLOR=yellow
FG_COLOR=black
fi
if [[ ! -z $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
BG_COLOR=red
FG_COLOR=white
fi
echo "%{%K{$BG_COLOR}%}⮀%{%F{$FG_COLOR}%} $(_git_prompt_info) %{%F{$BG_COLOR}%K{blue}%}⮀"
else
echo "%{%K{blue}%}⮀"
fi
}
function virtualenv_info {
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
}
PROMPT_HOST='%{%b%F{gray}%K{black}%} %(?.%{%F{green}%}✔.%{%F{red}%}✘)%{%F{yellow}%} %n %{%F{black}%}'
PROMPT_DIR='%{%F{white}%} %~% '
PROMPT_SU='%(!.%{%k%F{blue}%K{black}%}⮀%{%F{yellow}%} ⚡ %{%k%F{black}%}.%{%k%F{blue}%})⮀%{%f%k%b%}'
PROMPT='%{%f%b%k%}$PROMPT_HOST$(_git_info)$PROMPT_DIR$PROMPT_SU
$(virtualenv_info)❯ '
RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}'
@acook
Copy link

acook commented Aug 31, 2013

What is prompt_smileart_setup?

@ptran123
Copy link

ptran123 commented Nov 9, 2013

Concurred with acook. I get this show in the terminal: command not found: prompt_smileart_setup.

@hql287
Copy link

hql287 commented Nov 14, 2013

Have no idea what it is but just comment the last line out and everything should be working properly!

@kpvarma27
Copy link

I was able to install zsh , solarized colors with agonster.theme.
however its not showing the fonts properly.
not sure how to install powerline fonts properly in mac.

@skrauchenia
Copy link

Check the following:
terminal settings -> Advanced -> Escape non-ASCII input with Control-V
That checkbox should be unchecked

Hope this helps

@skrauchenia
Copy link

How can I customise arrow with current path? How to change either it's background or font colour?

@smileart
Copy link
Author

OH SHI~ I'm so sorry guys! Gist doesn't have comments notification, so I missed all your questions! If you would have any more questions, suggestions, bug reports, write right to my email! Thanks and sorry once again.

@srhmgn
Copy link

srhmgn commented Apr 2, 2014

Box unchecked in my Terminal app (though using iTerm2) and still can't see all the characters when I install the theme. Can't even see them in Chrome. Any tips?

@achmiral
Copy link

Can i use this theme on gnome-terminal ubuntu?

@scottbaron
Copy link

Can someone tell me how to get the clock to appear in the older version of agnoster? Or point out the line number code. Thank you beautiful work.

@emamut
Copy link

emamut commented Sep 17, 2015

Works great in Ubuntu 14.04 Thanks a lot

@maekawatoshiki
Copy link

Thanks a lot!

@jazari-akuna
Copy link

The fonts are not recognised for me, even if I use the powerline fonts... ubuntu 15.10 gnome shell...

@timbru31
Copy link

@raphaelcasimir I had issues with Menlo, too. Switched to this one for the symbols:
https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Hack

@smileart
Copy link
Author

Now I use this font: http://sourcefoundry.org/hack/
Before I used this one: https://gist.github.com/smileart/9741746

@lborg019
Copy link

modified

Changed some symbol characters, now it works as it is supposed to (I am using powerline font on iTerm 2).
@raphaelcasimir
If you are having issues like I had, try copy pasting this. Worked for me, hope it helps!

# Original theme https://github.com/agnoster zsh theme
# modified by lborg019

ZSH_THEME_GIT_PROMPT_DIRTY='±'

function _git_prompt_info() {
  ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="$(git show-ref --head -s --abbrev |head -n1 2> /dev/null)"
  echo "${ref/refs\/heads\// }$(parse_git_dirty)"
}

function _git_info() {
  if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
    local BG_COLOR=green
    if [[ -n $(parse_git_dirty) ]]; then
      BG_COLOR=yellow
      FG_COLOR=black
    fi

    if [[ ! -z $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
        BG_COLOR=red
        FG_COLOR=white
    fi
    echo "%{%K{$BG_COLOR}%}%{%F{$FG_COLOR}%} $(_git_prompt_info) %{%F{$BG_COLOR}%K{blue}%}"
  else
    echo "%{%K{blue}%}"
  fi
}

function virtualenv_info {
    [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
}

PROMPT_HOST='%{%b%F{gray}%K{black}%} %(?.%{%F{green}%}✔.%{%F{red}%}✘)%{%F{yellow}%} %n %{%F{black}%}'
PROMPT_DIR='%{%F{white}%} %~%  '
PROMPT_SU='%(!.%{%k%F{blue}%K{black}%}%{%F{yellow}%} ⚡ %{%k%F{black}%}.%{%k%F{blue}%})%{%f%k%b%}'

PROMPT='%{%f%b%k%}$PROMPT_HOST$(_git_info)$PROMPT_DIR$PROMPT_SU
$(virtualenv_info)❯ '
RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}'

@bmo-at
Copy link

bmo-at commented Jan 24, 2018

@lborg019 Works very well! One question: I really like the display of the username, but i'd love it if the machine name would also be shown ( like this: ✔ username@hostmachine   master  ~/...). I'm just getting started with linux, could you show me how it's done?

@bepstein111
Copy link

First and third (arrow and branch) symbols appear as boxes on Mac OS Mojave with both Powerline Fonts and Nerd Fonts. Same config seems to be fine on my Windows machine. V strange.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment