diff --git a/README.md b/README.md
index bda87a8..5820707 100644
--- a/README.md
+++ b/README.md
@@ -11,4 +11,27 @@
- [SUI](https://github.com/jeroenpardon/sui)
+##### [How to download images on UNIX?](#how-to-download-images-on-unix)
+
+
+
+
+---
+
+### How to download images on UNIX?
+
+
+`UNIX`
+
+```bash
+
+$ curl https://raw.githubusercontent.com/WalkxCode/dashboard-icons/master/png/example.png > example.png
+
+```
+or
+```bash
+
+$ wget https://raw.githubusercontent.com/WalkxCode/dashboard-icons/master/png/example.png -O example.png
+
+```
\ No newline at end of file
diff --git a/scripts/generate_readme.py b/scripts/generate_readme.py
index 2e2066a..f946510 100755
--- a/scripts/generate_readme.py
+++ b/scripts/generate_readme.py
@@ -19,5 +19,8 @@ if __name__ == "__main__":
f.write("- [Flame](https://github.com/pawelmalak/flame)\n")
f.write("- [Tinyhome](https://github.com/bderenzo/tinyhome)\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")
f.write(" ".join(img_tags))
- f.write("\n")
+ 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```")