Skip to content

Instantly share code, notes, and snippets.

@hiroshiro
Last active July 20, 2017 18:12
Show Gist options
  • Save hiroshiro/e9a06f18638820b0bab365d617d103fb to your computer and use it in GitHub Desktop.
Save hiroshiro/e9a06f18638820b0bab365d617d103fb to your computer and use it in GitHub Desktop.
random emoji for fish shell
function random_emoji
if count $argv >/dev/null
set emojis $argv
else
set emojis ♨ 🐟 ⚑ 🐳 πŸ—Ώ πŸ”₯ 🌻 🎐 🌿 🍷 🌹 πŸŽ€ 🌺 🌱 πŸ—» 🌼 🎠 🌈 🐝 🌊 πŸšƒ 🐧 🌷 πŸš€ πŸŒ™ 🎩 🐍 🐞 πŸŒ• πŸ’ 🍎 πŸ“
end
set emoji $emojis[(math (random)%(count $emojis)+1)]
echo -n " $emoji "
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment