Skip to content

Instantly share code, notes, and snippets.

@n8io
Created May 13, 2015 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n8io/f45d2089735b724efb37 to your computer and use it in GitHub Desktop.
Save n8io/f45d2089735b724efb37 to your computer and use it in GitHub Desktop.
rand() {
printf $(( $1 * RANDOM / 32767 ))
}
rand_element () {
local -a th=("$@")
unset th[0]
printf $'%s\n' "${th[$(($(rand "${#th[*]}")+1))]}"
}
#Default Prompt
PS1="${YELLOW}\w${GREEN}\$(git_branch)${WHITE}\n$(rand_element πŸ”₯ πŸš€ πŸ‘» β›„ πŸ‘Ύ πŸ” πŸ˜„ 🍰 πŸ‘ πŸ’© 😎 πŸ“›) $ ";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment