commit b2b68cf501f502f994d061e25df061cf71cabc5f Author: Raine Date: Sun Jan 14 17:35:30 2024 +0100 init: stuff diff --git a/measure-bs/measure.html b/measure-bs/measure.html new file mode 100644 index 0000000..135263e --- /dev/null +++ b/measure-bs/measure.html @@ -0,0 +1,39 @@ + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/outro/outro-shutdown.sh b/outro/outro-shutdown.sh new file mode 100644 index 0000000..850ef16 --- /dev/null +++ b/outro/outro-shutdown.sh @@ -0,0 +1,44 @@ +#!/bin/sh + +echo "preparing..." +sudo whoami >/dev/null +if ! [ -f "outro.webm" ]; then + yt-dlp \ + "https://www.youtube.com/watch?v=3_-a9nVZYjk" \ + --format 251 \ + -o outro.webm +fi + +echo "To cancel, Ctrl-C now..." +sleep 5 + +endtxt() { + sleep 6 + echo "It's been a pleasure..." + sleep 4 + echo "and i hate to do this..." + sleep 5 + echo "but i got to go..." + sleep 10 + echo "I just want to thank..." + sleep 5 + echo "My processor, for processing this..." + sleep 3 + echo "My ram for not forgetting me!" + sleep 3 + echo "My storage for always keeping space for me!" + sleep 1 + echo "But mostly..." + sleep 20 + echo "You, for killing me *dab*" +} + +clear +mpv --really-quiet outro.webm & +mpv_pid=$! +endtxt & +sleep 58 + +sudo shutdown -P now goodbye world +wait $mpv_pid + diff --git a/outro/outro.webm b/outro/outro.webm new file mode 100644 index 0000000..b174a80 Binary files /dev/null and b/outro/outro.webm differ