aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md11
-rwxr-xr-xgen-readme.sh4
2 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ebea69b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+# Symchan
+Art I made of the character symchan, created for my friend Dacctal.
+
+![character_sheet_pkgit_shirt.png](https://git.bwaaa.monster/symchan/plain/character_sheet_pkgit_shirt.png)
+
+![character_sheet_symlinx_shirt.png](https://git.bwaaa.monster/symchan/plain/character_sheet_symlinx_shirt.png)
+
+![symchan_fangirling.png](https://git.bwaaa.monster/symchan/plain/symchan_fangirling.png)
+
+![character_art_fullbody.png](https://git.bwaaa.monster/symchan/plain/character_art_fullbody.png)
+
diff --git a/gen-readme.sh b/gen-readme.sh
new file mode 100755
index 0000000..8aae781
--- /dev/null
+++ b/gen-readme.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+printf "# Symchan\n" > README.md
+printf "Art I made of the character symchan, created for my friend Dacctal.\n\n" >> README.md
+find . -name '*.png' -exec sh -c 'for f do f=${f#./}; printf "![%s](https://git.bwaaa.monster/symchan/plain/%s)\n\n" "$f" "$f"; done' _ {} + >> README.md