queering_bash/the-distance-between-us.sh
2024-06-08 17:07:00 +02:00

70 lines
3 KiB
Bash

trap "resize" WINCH
tput reset
echo "
There's a d i s t a n c e between us"
resize() {
COLS=$(tput cols)
if [[ COLS -gt 32 ]]
then
tput reset
cat << "EOF"
--═ ┌------- ▒
/ /__══ -----▬ `-----≈▒▄
--/ / __/ / / _▬
/ / / / └ / /
///// / ⋅┐ // // /-----/ __▬▒
≡ ≡ ≡ /⌠ / / I wish we could be together... └─// / / / ▒
/(( ( └---⋅ / └_/ ┌---- /
/ ≡≡---⋅ ≡≡------/ █
/ //
░/ //
▄ / //
/▄ ≡/▄░
/░ /▄
▄░ /
EOF
else
tput reset
echo "
together
at
last.
~ ❤ ~ "
fi
}
while : ; do
:
done