Last active
August 7, 2019 11:29
-
-
Save AurelienLoyer/383e7ee595083d6fb1b710758b6a28eb to your computer and use it in GitHub Desktop.
Hey Terminal ! Display me random emoji "π§" "π¦" "π₯" "π·" "π±" "π"
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
# Agnoster prompt customization | |
prompt_context() { | |
EMOJIS=("π§" "π¦" "π₯" "π·" "π±" "π") | |
RANDOM=$$$(date +%s) | |
prompt_segment black black "${EMOJIS[$RANDOM % ${#EMOJIS[@]}]}" | |
} |
Author
AurelienLoyer
commented
Aug 7, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment