Created
July 12, 2019 16:39
-
-
Save krsntn/2e4139a48ef9822b91fb8af1d1010bc7 to your computer and use it in GitHub Desktop.
customize bash prompt
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
| EMOJIS=('π' 'π€‘' 'π©' 'π€' 'π' 'π΅' 'π»' 'π€·ββοΈ' 'π' 'π' 'π' 'π' 'π' 'πΏ' 'π»' 'π' 'π«' 'π§²' 'π' 'π' 'π°' 'πΈ' 'π½' 'π' 'π' 'π' 'π΅' 'π€' 'π€' 'π' 'π€' 'π' 'π' 'π ββοΈ' 'π€¦ββοΈ' 'π€¦ββοΈ' 'π ββοΈ' 'π€·ββοΈ' 'π€' 'π€¬' 'π±' 'π΄' 'π' 'π' 'β οΈ'); | |
| RANDOM_EMOJI() { | |
| SELECTED_EMOJI=${EMOJIS[$RANDOM % ${#EMOJIS[@]}]}; | |
| echo $SELECTED_EMOJI; | |
| } | |
| PS1='\[\033[38;5;243m\]\t\[\e[m\] $(RANDOM_EMOJI):\[\e[01;34m\]\w\[\e[m\]\\$ ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment