Skip to content

Instantly share code, notes, and snippets.

@gabriellima
Created February 15, 2012 19:15
Show Gist options
  • Save gabriellima/1838258 to your computer and use it in GitHub Desktop.
Save gabriellima/1838258 to your computer and use it in GitHub Desktop.
Preview every oh-my-zsh theme
# by Gabriel Lima (http://github.com/gabriellima) (@glima5)
# dependency: xterm
# ALERT: this will probably use a lot of processing, depending on how many themes (*.zsh-theme) are present
cd $HOME/.oh-my-zsh/themes
for theme in $(ls | sed s'/.zsh-theme$//'); do
ZSH_THEME=$theme xterm -hold -bc -geometry 120x30 -bg #333 -fg #999 -e "echo $theme; cd ~/.oh-my-zsh; zsh" &;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment