Last active
March 17, 2023 11:07
-
-
Save edib/a0228a0b8098e6f9c9c2674c68686047 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# ZSH Theme - Preview: https://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png | |
EMOJI=(๐ฉ ๐ฆ ๐ ๐ ๐จ ๐ ๐ญ ๐ฝ โ๏ธ ๐ฌ ๐ ๐ท ๐ผ ๐ถ ๐ธ ๐ง ๐ณ ๐ ๐ฃ ๐ป ๐ฎ ๐ฐ ๐ ๐พ ๐ ๐ช ๐ ๐ ๐ ๐ ๐ ๐ ๐น ๐พ โ๏ธ ๐ต ๐ฆ ๐ฆ ๐ฆ ๐ ๐ฆ ๐ฆ ๐ฆ ๐ฆ ๐ ๐ ๐ ๐ฒ ๐ณ ๐ด ๐ฑ ๐ฟ โ๏ธ ๐ ๐ ๐ ๐ ๐) | |
function random_emoji { | |
echo -n "$EMOJI[$RANDOM%$#EMOJI+1]" | |
} | |
# ... | |
PROMPT="โญโ${user_host}${current_dir}${rvm_ruby}${git_branch}${venv_prompt} | |
โฐโ$(random_emoji) %B${user_symbol}%b " | |
# ... | |
--- | |
# in robbyrussell.zsh-theme | |
# | |
PROMPT="%(?:%{$fg_bold[green]%}$(random_emoji):%{$fg_bold[red]%}$(random_emoji))" | |
# other emojis | |
https://gist.github.com/BuonOmo/77b75349c517defb01ef1097e72227af |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment