create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| prompt_context() { | |
| # Custom (Random emoji) | |
| emojis=("⚡️" "🔥" "💀" "👑" "😎" "🐸" "🐵" "🦄" "🌈" "🍻" "🚀" "💡" "🎉" "🔑" "🇹🇭" "🚦" "🌙") | |
| RAND_EMOJI_N=$(( $RANDOM % ${#emojis[@]} + 1)) | |
| prompt_segment black default "${emojis[$RAND_EMOJI_N]} " | |
| } |