diff --git a/README.md b/README.md
index afdcd7a..2b7f0dc 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
-# ServiceIcons
+# Icons
-Service Icons used across various dashboards and services.
\ No newline at end of file
+
diff --git a/scripts/generate_readme.py b/scripts/generate_readme.py
new file mode 100644
index 0000000..8a704df
--- /dev/null
+++ b/scripts/generate_readme.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python3
+
+from pathlib import Path
+
+
+def generate_img_tag(file):
+ return f'
'
+
+
+if __name__ == "__main__":
+ imgs = sorted(Path("../Icons").glob("*.png"))
+ img_tags = [generate_img_tag(x) for x in imgs]
+
+ with open("README.md", "wt", encoding="UTF-8") as f:
+ f.write("# Icons\n\n")
+ f.write(" ".join(img_tags))
+ f.write("\n")