5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

インストール時に見る先頭のグルグルを作ってみた

Posted at

先頭の回転している点を作ってみた。パッケージのインストールなどで見かけるやつ。

demo

ソースコード

中身は工夫した形跡の見えない直書きコードでできています...

spinner.sh
# !/bin/bash

while :
do
    printf "\e[32m\r\u2807\e[0m loading.."
    sleep 0.2
    printf "\e[32m\r\u280b\e[0m loading.."
    sleep 0.2
    printf "\e[32m\r\u2819\e[0m loading.."
    sleep 0.2
    printf "\e[32m\r\u2838\e[0m loading.."
    sleep 0.2
    printf "\e[32m\r\u2834\e[0m loading.."
    sleep 0.2
    printf "\e[32m\r\u2826\e[0m loading.."
    sleep 0.2
done

回転しているところは点字でできていて、\u2800~\u283fで表示することができる。
\e[32m,\e[0mは色の指定を行っている。

参考

点字のUnicodeについて、以下を参考にした。

Unicodeの点字でお絵かき

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?