This commit is contained in:
Austin Richardson 2017-05-02 02:18:25 +00:00 committed by GitHub
commit 25a2da51cc

13
themes/emoji.zsh-theme Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env zsh
EMOJI=(💩 🐦 🚀 🐞 🎨 🍕 🐭 👽 ☕️ 🔬 💀 🐷 🐼 🐶 🐸 🐧 🐳 🌟 🍔 🍣 🍻 ⛵️ 🔮 💰 💎 💾 💜 🍪 🌞 🌍 🐌 🐓 🍄 )
function random_emoji {
echo -n "$EMOJI[$RANDOM%$#EMOJI+1]"
}
PROMPT="$(random_emoji) "
RPROMPT='%{$fg_bold[colour255]%}%c$(git_prompt_info)'
ZSH_THEME_GIT_PROMPT_PREFIX=" : "
ZSH_THEME_GIT_PROMPT_SUFFIX=" "