diff --git a/trippy.sh b/trippy.sh new file mode 100755 index 0000000..a5af2bb --- /dev/null +++ b/trippy.sh @@ -0,0 +1,4 @@ +#!/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