From 4aa447c07c461e8e9d45dc1edea143dab73238cd Mon Sep 17 00:00:00 2001 From: narstybits Date: Sat, 27 May 2023 14:35:23 -0500 Subject: [PATCH] added Colorful time and date display --- Pranks/colorful Date and time display.txt | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Pranks/colorful Date and time display.txt diff --git a/Pranks/colorful Date and time display.txt b/Pranks/colorful Date and time display.txt new file mode 100644 index 0000000..d3334c3 --- /dev/null +++ b/Pranks/colorful Date and time display.txt @@ -0,0 +1,35 @@ +REM The command date | figlet | lolcat generates a large. +REM colorful representation of the current date and time in the terminal window. +REM To stop the animation, you can interrupt the script by pressing CTRL+C. + + +REM Title: colorful Date and time display +REM Author: Narsty +REM Target: MacOS +REM Version: 1.0 +REM Category: Prank + + + +ID 05ac:021e Apple:Keyboard +DELAY 1000 +GUI SPACE +DELAY 500 +STRING Terminal +DELAY 500 +ENTER +DELAY 500 +GUI-CTRL f +DELAY 2000 +STRING clear +ENTER +DELAY 500 +STRING brew install figlet lolcat +ENTER +DELAY 15000 +STRING while true; do date | figlet | lolcat; sleep 1; clear; done +DELAY 1000 +ENTER + + +