1
0
Fork 0

init: stuff

This commit is contained in:
Strix 2024-01-14 17:35:30 +01:00
commit b2b68cf501
No known key found for this signature in database
GPG key ID: 5F35B3B8537287A7
3 changed files with 83 additions and 0 deletions

39
measure-bs/measure.html Normal file
View file

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.h {
display: flex;
}
.mm {
height: 10mm;
width: 1mm;
}
body div *:nth-child(2n) {
background: red;
}
body div * {
background: black;
}
</style>
</head>
<body>
<div class="h" id="mm">
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
</div>
<div data-html-copy="#h"></div>
</body>
</html>

44
outro/outro-shutdown.sh Normal file
View file

@ -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

BIN
outro/outro.webm Normal file

Binary file not shown.