From ca403122c20e9d116042ea0f6e50741f8afa7161 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 20 Aug 2024 11:41:49 +0100 Subject: [PATCH] [trippy.sh]: move to inutility_scripts repository --- README.md | 1 - trippy.sh | 7 ------- 2 files changed, 8 deletions(-) delete mode 100755 trippy.sh diff --git a/README.md b/README.md index 0a84511..0419492 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/trippy.sh b/trippy.sh deleted file mode 100755 index 68e1c3d..0000000 --- a/trippy.sh +++ /dev/null @@ -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