Skip to content

Instantly share code, notes, and snippets.

@roblogic
Created November 4, 2020 23:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roblogic/285dd65bf9d25c12722299d54d6a76c2 to your computer and use it in GitHub Desktop.
Save roblogic/285dd65bf9d25c12722299d54d6a76c2 to your computer and use it in GitHub Desktop.
fun with @ish_app -- fill screen with technicolor spew
#!/bin/zsh
P=(' ' █ ░ ▒ ▓)
while :;do
printf "\e[9$(( ( RANDOM % 7 ) + 1 ))m\e[$[RANDOM%$LINES+1];$[RANDOM%$COLUMNS+1]f${P[$RANDOM%5]}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment