Skip to content

Commit 158648d

Browse files
Dharam DhurandharDharam Dhurandhar
Dharam Dhurandhar
authored and
Dharam Dhurandhar
committed
Screenshots added
1 parent 92234b6 commit 158648d

19 files changed

+125
-0
lines changed

screenshots/Ayu Dark.png

416 KB
Loading

screenshots/Blueloco Dark.png

411 KB
Loading

screenshots/CRT Green.png

408 KB
Loading

screenshots/Civic.png

440 KB
Loading

screenshots/Cobalt.png

420 KB
Loading

screenshots/Dracula.png

425 KB
Loading

screenshots/Dusk.png

399 KB
Loading

screenshots/Flate Arc.png

413 KB
Loading

screenshots/Flate.png

419 KB
Loading

screenshots/Monokai Pro.png

422 KB
Loading

screenshots/Night Owl.png

422 KB
Loading

screenshots/Noctis Obscuro.png

419 KB
Loading

screenshots/One Dark Pro.png

412 KB
Loading

screenshots/Poimandres Dark.png

406 KB
Loading

screenshots/Slack Aubergine.png

419 KB
Loading

screenshots/Synthwave 84.png

420 KB
Loading

screenshots/Tokyo Night.png

414 KB
Loading

screenshots/create_md.sh

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/bash
2+
3+
# Define the output markdown file
4+
output_markdown="images.md"
5+
6+
# Clear the markdown file if it already exists
7+
> "$output_markdown"
8+
9+
# Loop through all png files in the current directory
10+
for file in *.png; do
11+
# Extract filename without extension
12+
filename="${file%.*}"
13+
14+
# Append the markdown header and HTML section to the markdown file
15+
echo "### $filename" >> "$output_markdown"
16+
echo "<div style=\"display: flex;\">" >> "$output_markdown"
17+
echo " <img src=\"screenshots/$file\" alt=\"image\" width=\"500\" style=\"margin-right: 10px;\">" >> "$output_markdown"
18+
echo "</div>" >> "$output_markdown"
19+
echo "<br/> <br/>" >> "$output_markdown" # Add extra line breaks for spacing
20+
echo "" >> "$output_markdown"
21+
done
22+
23+
echo "Markdown file created: $output_markdown"

screenshots/images.md

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
### Ayu Dark
2+
<div style="display: flex;">
3+
<img src="screenshots/Ayu Dark.png" alt="image" width="500" style="margin-right: 10px;">
4+
</div>
5+
<br/> <br/>
6+
7+
### Blueloco Dark
8+
<div style="display: flex;">
9+
<img src="screenshots/Blueloco Dark.png" alt="image" width="500" style="margin-right: 10px;">
10+
</div>
11+
<br/> <br/>
12+
13+
### CRT Green
14+
<div style="display: flex;">
15+
<img src="screenshots/CRT Green.png" alt="image" width="500" style="margin-right: 10px;">
16+
</div>
17+
<br/> <br/>
18+
19+
### Civic
20+
<div style="display: flex;">
21+
<img src="screenshots/Civic.png" alt="image" width="500" style="margin-right: 10px;">
22+
</div>
23+
<br/> <br/>
24+
25+
### Cobalt
26+
<div style="display: flex;">
27+
<img src="screenshots/Cobalt.png" alt="image" width="500" style="margin-right: 10px;">
28+
</div>
29+
<br/> <br/>
30+
31+
### Dracula
32+
<div style="display: flex;">
33+
<img src="screenshots/Dracula.png" alt="image" width="500" style="margin-right: 10px;">
34+
</div>
35+
<br/> <br/>
36+
37+
### Dusk
38+
<div style="display: flex;">
39+
<img src="screenshots/Dusk.png" alt="image" width="500" style="margin-right: 10px;">
40+
</div>
41+
<br/> <br/>
42+
43+
### Flate Arc
44+
<div style="display: flex;">
45+
<img src="screenshots/Flate Arc.png" alt="image" width="500" style="margin-right: 10px;">
46+
</div>
47+
<br/> <br/>
48+
49+
### Flate
50+
<div style="display: flex;">
51+
<img src="screenshots/Flate.png" alt="image" width="500" style="margin-right: 10px;">
52+
</div>
53+
<br/> <br/>
54+
55+
### Monokai Pro
56+
<div style="display: flex;">
57+
<img src="screenshots/Monokai Pro.png" alt="image" width="500" style="margin-right: 10px;">
58+
</div>
59+
<br/> <br/>
60+
61+
### Night Owl
62+
<div style="display: flex;">
63+
<img src="screenshots/Night Owl.png" alt="image" width="500" style="margin-right: 10px;">
64+
</div>
65+
<br/> <br/>
66+
67+
### Noctis Obscuro
68+
<div style="display: flex;">
69+
<img src="screenshots/Noctis Obscuro.png" alt="image" width="500" style="margin-right: 10px;">
70+
</div>
71+
<br/> <br/>
72+
73+
### One Dark Pro
74+
<div style="display: flex;">
75+
<img src="screenshots/One Dark Pro.png" alt="image" width="500" style="margin-right: 10px;">
76+
</div>
77+
<br/> <br/>
78+
79+
### Poimandres Dark
80+
<div style="display: flex;">
81+
<img src="screenshots/Poimandres Dark.png" alt="image" width="500" style="margin-right: 10px;">
82+
</div>
83+
<br/> <br/>
84+
85+
### Slack Aubergine
86+
<div style="display: flex;">
87+
<img src="screenshots/Slack Aubergine.png" alt="image" width="500" style="margin-right: 10px;">
88+
</div>
89+
<br/> <br/>
90+
91+
### Synthwave 84
92+
<div style="display: flex;">
93+
<img src="screenshots/Synthwave 84.png" alt="image" width="500" style="margin-right: 10px;">
94+
</div>
95+
<br/> <br/>
96+
97+
### Tokyo Night
98+
<div style="display: flex;">
99+
<img src="screenshots/Tokyo Night.png" alt="image" width="500" style="margin-right: 10px;">
100+
</div>
101+
<br/> <br/>
102+

0 commit comments

Comments
 (0)