70 lines
3 KiB
Bash
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
|
|
|