Last active
February 1, 2022 15:04
-
-
Save ariary/fe5be3ed5250cfbfc04f984c0525e498 to your computer and use it in GitHub Desktop.
Change your afowler theme with a random animal
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
#!/bin/bash | |
ANIMAL="๐ฆ" | |
sed -i "/PROMPT=/c\PROMPT=\'%{\$fg_bold[green]%}$ANIMAL %m%{\$reset_color%} %{\${fg_bold[blue]}%}:: %{\$reset_color%}%{\${fg[green]}%}%3~ \$(git_prompt_info)%{\${fg_bold[\$CARETCOLOR]}%}ยป%{\${reset_color}%} \'" ~/.oh-my-zsh/themes/afowler.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
#!/bin/bash | |
ARRAY=(๐ ๐ ๐ ๐ ๐ ๐ง ๐ฆ ๐ค ๐ฃ ๐ฅ ๐ฆ ๐ฆ ๐ฆ ๐ฆ ๐บ ๐ ๐ด ๐ฆ ๐ ๐ชฑ ๐ ๐ฆ ๐ ๐ ๐ ๐ชฐ ๐ชฒ ๐ชณ ๐ฆ ๐ฆ ๐ท ๐ธ ๐ฆ ๐ข ๐ ๐ฆ ๐ฆ ๐ฆ ๐ ๐ฆ ๐ฆ ๐ฆ ๐ฆ ๐ก ๐ ๐ ๐ฌ ๐ณ ๐ ๐ฆ ๐ ๐ ๐ ๐ฆ ๐ฆ ๐ฆง ๐ฆฃ ๐ ๐ฆ ๐ฆ ๐ช ๐ซ ๐ฆ ๐ฆ ๐ฆฌ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ฆ ๐ ๐ฆ ๐ ๐ฉ ๐ฆฎ ๐โ๐ฆบ ๐ ๐โโฌ ๐ชถ ๐ ๐ฆ ๐ฆค ๐ฆ ๐ฆ ๐ฆข ๐ฆฉ ๐ ๐ ๐ฆ ๐ฆจ ๐ฆก ๐ฆซ ๐ฆฆ ๐ฆฅ ๐ ๐ ๐ฟ ๐ฆ ๐พ ๐ ๐ฒ) | |
size=${#ARRAY[@]} | |
index=$(($RANDOM % $size)) | |
RANDOM_ANIMAL="${ARRAY[$index]}" | |
sed -i "/PROMPT=/c\PROMPT=\'%{\$fg_bold[green]%}$RANDOM_ANIMAL %m%{\$reset_color%} %{\${fg_bold[blue]}%}:: %{\$reset_color%}%{\${fg[green]}%}%3~ \$(git_prompt_info)%{\${fg_bold[\$CARETCOLOR]}%}ยป%{\${reset_color}%} \'" ~/.oh-my-zsh/themes/afowler.zsh-theme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment