Last active
May 18, 2023 01:19
-
-
Save benigumocom/63e1518b522ca31f23ce76f8be50e8d3 to your computer and use it in GitHub Desktop.
Text Animation using Braille pattern dots
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/bash | |
chars="⣷ ⣯ ⣟ ⡿ ⢿ ⣻ ⣽ ⣾" | |
while true | |
do | |
for c in $chars | |
do | |
sleep 0.2 | |
echo -en "\r[$c] loading " | |
done | |
done |
👍 👍 👍 👍👍 👍
😆
👍👍👍👍👍👍
👍👍👍👍👍👍
👍 👍 👍 👍👍 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
テキストアニメーションで Progress Indicator
👉 https://android.benigumo.com/20230509/text-progress-indicator/