hosted on my own knot server!
1#!/usr/bin/env bash
2# mostly borrowed from ysap.sh
3
4source ./theme.sh || exit 1
5
6readarray -t BODY1 << "EOF"
7 ~*~ kat, 20, she/her. ~*~
8EOF
9
10readarray -t BODY2 << EOF
11 i like computers and music and other irrelevant stuff.
12 i have several servers at home and i never shut up about them. my server
13 related hobbies include spinning up random docker containers, hosting sites
14 no one will use, and breaking my home internet router, among other things.
15EOF
16
17readarray -t BODY3 << "EOF"
18 in my spare time i can be found messing with my servers and deploying sites
19 for fun. servers are a huge passion for me and i am ecstatic anytime someone
20 shows interest in them. feel free to talk to me anytime about my work and
21 about servers in general.
22EOF
23
24readarray -t URL << "EOF"
25 girlonthemoon.xyz
26EOF
27
28for line in "${BODY1[@]}"; do
29 echo "$COLOR1$line$RST"
30done
31echo -e "\n"
32for line in "${BODY2[@]}"; do
33 echo "$COLOR2$line$RST"
34done
35echo -e "\n"
36for line in "${BODY3[@]}"; do
37 echo "$COLOR2$line$RST"
38done
39echo -e "\n"
40for line in "${URL[@]}"; do
41 echo "$COLOR1$line$RST"
42done