[trippy.sh]: move to this repository from utility_scripts repository

This commit is contained in:
2024-08-20 11:48:18 +01:00
parent 43e4f47d12
commit 2ddd156ed9
2 changed files with 7 additions and 0 deletions

View File

@ -6,3 +6,4 @@ repository to house scripts that were not useful enough to earn a place in there
- `recursive.sh`: a script that calls itself. - `recursive.sh`: a script that calls itself.
- `self_destruct.sh`: a script that deletes itself. - `self_destruct.sh`: a script that deletes itself.
- `suicidal.sh`: a script that kills the process that's executing it, i.e. itself. - `suicidal.sh`: a script that kills the process that's executing it, i.e. itself.
- `trippy.sh`: a script that displays random visual data to the screen (only works when called from a TTY, by a user who has write access to the `fb0` device, e.g. `root`).

6
trippy.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# Script to display random data to the screen. To be ran from a TTY, as a user who has write privileges to the fb0 device
while [ true ]; do
cat /dev/urandom > /dev/fb0
done