# File: ~/.profile
# Selects a random emoji for my terminal prompt using emojify.
RANDOM_EMOJI=$(emojify -l | shuf -n 1 | sed 's/:.*//' | sed 's/ //g')
export PS1='\W ${RANDOM_EMOJI} >'
Yields:
Last login: Tue Sep 10 07:28:33 on ttys002
~ 📠>
In case you want to add it to your docs so that others can be as well. ;)
Bash prompt:
Yields:
In case you want to add it to your docs so that others can be as well. ;)
Thanks!