Skip to content

Instantly share code, notes, and snippets.

@batunpc
Created December 19, 2022 01:00
Show Gist options
  • Save batunpc/d5773b24beaaaabb0c022d2a6381cbd1 to your computer and use it in GitHub Desktop.
Save batunpc/d5773b24beaaaabb0c022d2a6381cbd1 to your computer and use it in GitHub Desktop.
Poem typewriter with animation in your terminal
poem() {
# get random poem from api
local poem=$(curl -s https://poetrydb.org/random | jq -r '.[0].lines[]')
# print poem
echo
autoload -U colors
colors
echo $bold_color "$poem" | pv -qL 7
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment