Last active
January 13, 2020 18:59
-
-
Save emunozhern/7f09cf1c5b38ac1c84a6847dc67569f8 to your computer and use it in GitHub Desktop.
Revisions
-
emunozhern revised this gist
Jan 13, 2020 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,4 @@ prompt_context() { emojis=("β‘οΈ" "π₯" "π" "π" "π" "πΈ" "π΅" "π¦" "π" "π»" "π" "π‘" "π" "π" "πΉπ" "π¦" "π") RAND_EMOJI_N=$(( $RANDOM % ${#emojis[@]} + 1)) prompt_segment black default "${emojis[$RAND_EMOJI_N]} " } -
emunozhern revised this gist
Jan 13, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,3 +5,4 @@ prompt_context() { prompt_segment black default "${emojis[$RAND_EMOJI_N]} " }  -
emunozhern created this gist
Jan 13, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ prompt_context() { # Custom (Random emoji) emojis=("β‘οΈ" "π₯" "π" "π" "π" "πΈ" "π΅" "π¦" "π" "π»" "π" "π‘" "π" "π" "πΉπ" "π¦" "π") RAND_EMOJI_N=$(( $RANDOM % ${#emojis[@]} + 1)) prompt_segment black default "${emojis[$RAND_EMOJI_N]} " }