├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── Makefile ├── README.md ├── _config.yml ├── animations ├── arrow.sh ├── arrow2.sh ├── arrow_fill.sh ├── bar.sh ├── bar2.sh ├── bar_fill.sh ├── bar_fill2.sh ├── bit.sh ├── block.sh ├── block2.sh ├── bomb.sh ├── bounce.sh ├── braille.sh ├── braille2.sh ├── bubble.sh ├── camera.sh ├── camera2.sh ├── classic.sh ├── clock.sh ├── dots.sh ├── dots2.sh ├── earth.sh ├── fireworks.sh ├── future.sh ├── lunar.sh ├── metro.sh ├── modern.sh ├── modern2.sh ├── pong.sh ├── pulse_blue.sh ├── pulse_orange.sh ├── quarter.sh ├── semi.sh ├── snake.sh ├── soccer.sh ├── trigram.sh ├── wave.sh └── wave2.sh ├── demo.gif ├── man └── man1 │ └── tan.1.gz ├── tan ├── tan.sh └── test /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/_config.yml -------------------------------------------------------------------------------- /animations/arrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/arrow.sh -------------------------------------------------------------------------------- /animations/arrow2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/arrow2.sh -------------------------------------------------------------------------------- /animations/arrow_fill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/arrow_fill.sh -------------------------------------------------------------------------------- /animations/bar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/bar.sh -------------------------------------------------------------------------------- /animations/bar2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/bar2.sh -------------------------------------------------------------------------------- /animations/bar_fill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/bar_fill.sh -------------------------------------------------------------------------------- /animations/bar_fill2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/bar_fill2.sh -------------------------------------------------------------------------------- /animations/bit.sh: -------------------------------------------------------------------------------- 1 | # Name: bit 2 | 3 | __animations__frames=( 4 | '●' '⚬' 5 | ) 6 | -------------------------------------------------------------------------------- /animations/block.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/block.sh -------------------------------------------------------------------------------- /animations/block2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/block2.sh -------------------------------------------------------------------------------- /animations/bomb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/bomb.sh -------------------------------------------------------------------------------- /animations/bounce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/bounce.sh -------------------------------------------------------------------------------- /animations/braille.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/braille.sh -------------------------------------------------------------------------------- /animations/braille2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/braille2.sh -------------------------------------------------------------------------------- /animations/bubble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/bubble.sh -------------------------------------------------------------------------------- /animations/camera.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/camera.sh -------------------------------------------------------------------------------- /animations/camera2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/camera2.sh -------------------------------------------------------------------------------- /animations/classic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/classic.sh -------------------------------------------------------------------------------- /animations/clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/clock.sh -------------------------------------------------------------------------------- /animations/dots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/dots.sh -------------------------------------------------------------------------------- /animations/dots2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/dots2.sh -------------------------------------------------------------------------------- /animations/earth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/earth.sh -------------------------------------------------------------------------------- /animations/fireworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/fireworks.sh -------------------------------------------------------------------------------- /animations/future.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/future.sh -------------------------------------------------------------------------------- /animations/lunar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/lunar.sh -------------------------------------------------------------------------------- /animations/metro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/metro.sh -------------------------------------------------------------------------------- /animations/modern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/modern.sh -------------------------------------------------------------------------------- /animations/modern2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/modern2.sh -------------------------------------------------------------------------------- /animations/pong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/pong.sh -------------------------------------------------------------------------------- /animations/pulse_blue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/pulse_blue.sh -------------------------------------------------------------------------------- /animations/pulse_orange.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/pulse_orange.sh -------------------------------------------------------------------------------- /animations/quarter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/quarter.sh -------------------------------------------------------------------------------- /animations/semi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/semi.sh -------------------------------------------------------------------------------- /animations/snake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/snake.sh -------------------------------------------------------------------------------- /animations/soccer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/soccer.sh -------------------------------------------------------------------------------- /animations/trigram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/trigram.sh -------------------------------------------------------------------------------- /animations/wave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/wave.sh -------------------------------------------------------------------------------- /animations/wave2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/animations/wave2.sh -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/demo.gif -------------------------------------------------------------------------------- /man/man1/tan.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/man/man1/tan.1.gz -------------------------------------------------------------------------------- /tan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/tan -------------------------------------------------------------------------------- /tan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/tan.sh -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorexdeveloper/terminal-animations/HEAD/test --------------------------------------------------------------------------------