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

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