This commit is contained in:
Aleksander Cynarski 2020-09-01 18:08:20 +02:00
parent 7ef0bd900e
commit 07a3b7821a

View File

@ -1,9 +1,32 @@
#!/bin/bash
#
# Helper functions
#
declare -i term_width=120
h1() {
declare border padding text
border='\e[1;34m'"$(printf '=%.0s' $(seq 1 "$term_width"))"'\e[0m'
padding="$(printf ' %.0s' $(seq 1 $(((term_width - $(wc -m <<<"$*")) / 2))))"
text="\\e[1m$*\\e[0m"
echo -e "$border"
echo -e "${padding}${text}${padding}"
echo -e "$border"
}
h2() {
printf '\e[1;33m==>\e[37;1m %s\e[0m\n' "$*"
}
h1 "Inicjalizacja struktury hugo"
hugo new site --force ./
h1 "Inicjalizacja repozytorium git"
git init
h2 "Inicjalizacja submodułu z docsy"
git submodule add https://github.com/google/docsy.git themes/docsy
echo 'theme = "docsy"' >> config.toml
git submodule update --init --recursive
h1 "Czyszczenie repozytorium"
rm init_docsy.sh