Files
utility_scripts/trippy.sh
2023-09-16 00:48:05 +01:00

5 lines
134 B
Bash
Executable File

#!/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