diff options
Diffstat (limited to 'generate.sh')
-rwxr-xr-x | generate.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generate.sh b/generate.sh index 8f90c7f..0e8a8a4 100755 --- a/generate.sh +++ b/generate.sh @@ -3,8 +3,8 @@ set -e echo "Generate axtlos(7)" mandoc -T html -O style=./style.css axtlos.7 > axtlos.7.html -echo "Change OS" -sed 's|Linux 6.2.6-arch1-1|FreeBSD 13.1-RELEASE-p6|g' axtlos.7.html > axtlos.7.html.tmp +echo "Add favicon" +sed 's|media="all"/>|media="all"/>\n<link rel="icon" type="image/x-icon" href="./favicon.gif"/>|' axtlos.7.html > axtlos.7.html.tmp mv axtlos.7.html.tmp axtlos.7.html echo "Change fedi hyperlink style" sed 's|<p class="Pp">- <a class="Lk" href="https://akko.wtf/xenia">Fedi</a></p>|<p class="Pp">- <i class="Em">Fedi:</i> <a class="Lk" rel="me" href="https://akko.wtf/axtlos">https://akko.wtf/axtlos</a></p>|g' axtlos.7.html > axtlos.7.html.tmp |