diff --git a/trippy.sh b/trippy.sh index a5af2bb..29959e9 100755 --- a/trippy.sh +++ b/trippy.sh @@ -1,4 +1,7 @@ #!/bin/sh # script to display random data to the screen. to be ran from a tty -while [ true ]; do cat /dev/urandom > /dev/fb0; done +while [ true ] +do + cat /dev/urandom > /dev/fb0 +done