reformat trippy.sh to make more legible

This commit is contained in:
2023-11-01 11:38:48 +00:00
parent 50fb226ea5
commit 46247fe6af

View File

@ -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