diff --git a/README.md b/README.md
index 3cd1659..1692271 100644
--- a/README.md
+++ b/README.md
@@ -2,16 +2,18 @@
### The best Dashboards:
+- [Dashy (Icons Natively Supported)](https://github.com/Lissy93/dashy)
- [Homer Dashboard](https://github.com/bastienwirtz/homer)
- [Heimdall](https://github.com/linuxserver/Heimdall)
- [Organizr (v2)](https://github.com/causefx/Organizr)
-- [Dashy](https://github.com/Lissy93/dashy)
- [Flame](https://github.com/pawelmalak/flame)
- [SUI](https://github.com/jeroenpardon/sui)
##### [How to download images on UNIX?](#how-to-download-images-on-unix)
+##### [How to use icons in Dashy natively?](https://github.com/Lissy93/dashy/blob/master/docs/icons.md#home-lab-icons)
+
@@ -43,4 +45,22 @@ $ wget https://raw.githubusercontent.com/WalkxCode/dashboard-icons/master/png/ex
(Almost) All product names, trademarks and registered trademarks in the images in this repository, are property of their respective owners. All images in this repository are used by the users of the Dashboard Icons project for identification purposes only.
-The use of these names, trademarks and brands appearing in these image files, do not imply endorsement.
\ No newline at end of file
+The use of these names, trademarks and brands appearing in these image files, do not imply endorsement.
+
+
+---
+
+## Mentions
+This project has been mentioned on:
+
+#### The Official Dashy Docs
+[Home-Lab Icons](https://www.reddit.com/r/selfhosted/comments/podb3c/comment/hcxf4eb/?utm_source=share&utm_medium=web2x&context=3)
+
+#### Awesome Open Source
+[YouTube](https://youtu.be/QsQUzutGarA?t=580)
+[Show notes](https://shownotes.opensourceisawesome.com/dashy-powerful-informative/)
+
+#### r/selfhosted
+[u/BackedUpBooty](https://www.reddit.com/r/selfhosted/comments/qu11pf/comment/hkp7v3o/?utm_source=share&utm_medium=web2x&context=3)
+[u/marusb](https://www.reddit.com/r/selfhosted/comments/q4tnac/comment/hg2sovy/?utm_source=share&utm_medium=web2x&context=3)
+[u/Jonathan_Fu](https://www.reddit.com/r/selfhosted/comments/podb3c/comment/hcxf4eb/?utm_source=share&utm_medium=web2x&context=3)
\ No newline at end of file
diff --git a/scripts/generate_readme.py b/scripts/generate_readme.py
index 7af9c89..1156224 100755
--- a/scripts/generate_readme.py
+++ b/scripts/generate_readme.py
@@ -12,15 +12,20 @@ if __name__ == "__main__":
with open("README.md", "wt", encoding="UTF-8") as f:
f.write("# Dashboard Icons\n\n")
f.write("### The best Dashboards:\n\n")
+ f.write(
+ "- [Dashy (Icons Natively Supported)](https://github.com/Lissy93/dashy)\n")
f.write("- [Homer Dashboard](https://github.com/bastienwirtz/homer)\n")
f.write("- [Heimdall](https://github.com/linuxserver/Heimdall)\n")
f.write("- [Organizr (v2)](https://github.com/causefx/Organizr)\n")
- f.write("- [Dashy](https://github.com/Lissy93/dashy)\n")
f.write("- [Flame](https://github.com/pawelmalak/flame)\n")
f.write("- [SUI](https://github.com/jeroenpardon/sui)\n\n\n")
f.write(
- "##### [How to download images on UNIX?](#how-to-download-images-on-unix)\n\n\n")
+ "##### [How to download images on UNIX?](#how-to-download-images-on-unix)\n\n")
+ f.write(
+ "##### [How to use icons in Dashy natively?](https://github.com/Lissy93/dashy/blob/master/docs/icons.md#home-lab-icons)\n\n\n")
f.write(" ".join(img_tags))
f.write("\n\n\n")
f.write("---\n\n### How to download images on UNIX?\n\n\n`UNIX`\n\n```bash\n\n$ curl https://raw.githubusercontent.com/WalkxCode/dashboard-icons/master/png/example.png > example.png\n\n```\nor\n```bash\n\n$ wget https://raw.githubusercontent.com/WalkxCode/dashboard-icons/master/png/example.png -O example.png\n\n```")
f.write("\n\n\n---\n\n## Trademark Legal Notices\n\n(Almost) All product names, trademarks and registered trademarks in the images in this repository, are property of their respective owners. All images in this repository are used by the users of the Dashboard Icons project for identification purposes only.\n\n\nThe use of these names, trademarks and brands appearing in these image files, do not imply endorsement.")
+ f.write(
+ "\n\n\n---\n\n## Mentions\nThis project has been mentioned on:\n\n#### The Official Dashy Docs\n[Home-Lab Icons](https://www.reddit.com/r/selfhosted/comments/podb3c/comment/hcxf4eb/?utm_source=share&utm_medium=web2x&context=3)\n\n#### Awesome Open Source\n[YouTube](https://youtu.be/QsQUzutGarA?t=580)\n[Show notes](https://shownotes.opensourceisawesome.com/dashy-powerful-informative/)\n\n#### r/selfhosted\n[u/BackedUpBooty](https://www.reddit.com/r/selfhosted/comments/qu11pf/comment/hkp7v3o/?utm_source=share&utm_medium=web2x&context=3)\n[u/marusb](https://www.reddit.com/r/selfhosted/comments/q4tnac/comment/hg2sovy/?utm_source=share&utm_medium=web2x&context=3)\n[u/Jonathan_Fu](https://www.reddit.com/r/selfhosted/comments/podb3c/comment/hcxf4eb/?utm_source=share&utm_medium=web2x&context=3)")