random-animation.sh (479B)
1 #!/bin/sh 2 3 randomanimation() { 4 printf '%s\n' beams binarypath blackhole bouncyballs bubbles burn \ 5 colorshift crumble decrypt errorcorrect expand fireworks \ 6 middleout orbittingvolley overflow pour print rain \ 7 randomsequence rings scattered slice slide spotlights spray \ 8 swarm synthgrid unstable vhstape waves wipe \ 9 | sort -R | head -n 1 10 } 11 12 # From: https://github.com/ChrisBuilds/terminaltexteffects 13 exec tte --frame-rate 400 --input-file "$1" "$(randomanimation)" 14