dot dot dotfiles
1#!/bin/bash
2
3effects=("beams" "binarypath" "blackhole" "bouncyballs" "bubbles" "burn"
4 "colorshift" "crumble" "decrypt" "errorcorrect" "expand" "fireworks"
5 "middleout" "orbittingvolley" "overflow" "pour" "print" "rain"
6 "randomsequence" "rings" "scattered" "slice" "slide" "spotlights" "spray"
7 "swarm" "synthgrid" "unstable" "vhstape" "waves" "wipe")
8
9random_index=$((RANDOM % ${#effects[@]}))
10effect="${effects[random_index]}"
11
12tte $effect