[trippy.sh]: move to inutility_scripts repository

This commit is contained in:
2024-08-20 11:41:49 +01:00
parent 4dc912ae45
commit ca403122c2
2 changed files with 0 additions and 8 deletions

View File

@ -33,6 +33,5 @@
- `stopwatch.sh`: simple stopwatch script that counts the elapsed time in seconds, and displays it in the format HH:MM:SS.
- `sync_music.sh`: script to sync my Android phone's music library to the contents of my `~/media/music/` directory, i.e. copy my music library from my
laptop to my phone.
- `trippy.sh`: 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`).
- `webcam.sh`: one-line script that uses the video viewer program `mpv` as a webcam by using `/dev/video0` as its video file source.
- `wifi_dmenu.sh`: script to connect to an available WiFi network with a dmenu prompt.

View File

@ -1,7 +0,0 @@
#!/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