Created
February 15, 2012 19:15
-
-
Save gabriellima/1838258 to your computer and use it in GitHub Desktop.
Preview every oh-my-zsh theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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