mirror of
https://github.com/AngelJumbo/gruvbox-wallpapers.git
synced 2026-08-12 08:52:29 +00:00
113 lines
4.3 KiB
Bash
Executable File
113 lines
4.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# MIT License
|
|
# Copyright (c) 2022 Angel Jumbo <anarjumb@protonmail.com>
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
touch ./index.html
|
|
|
|
echo "<!DOCTYPE html>
|
|
<html lang=\"en\">
|
|
|
|
<head>
|
|
<meta charset=\"utf-8\">
|
|
<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">
|
|
<title>Gruvbox wallpapers</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Wallpapers for gruvbox</h1>" > ./index.html
|
|
|
|
color=1
|
|
for subdir in ./wallpapers/*
|
|
do
|
|
|
|
echo "<h2 id=s"$color">" >> ./index.html
|
|
echo "${subdir##*/}" | tr a-z A-Z >> ./index.html
|
|
echo "</h2>" >> ./index.html
|
|
|
|
echo "<div id=c>" >> ./index.html
|
|
|
|
count=1;
|
|
for wallpaper in ${subdir}/*
|
|
do
|
|
if [ "$count" -lt 9 ]; then #limit the amount of images per section in index
|
|
echo " <a target=\"_blank\" href=\"$wallpaper\">
|
|
<img loading=\"lazy\" src=\"$wallpaper\" alt="$wallpaper" width=\"200\"></a>" >> ./index.html
|
|
count=$((count+1))
|
|
else #if the limit is exceeded then create a new html with all the images of the section
|
|
# TODO: make this part cleaner, this is really ugly!!.
|
|
subhtml="${subdir##*/}.html"
|
|
nimgs=$(ls "${subdir}" | wc -l)
|
|
echo " <a target=\"_blank\" class = \"showmore\" href=\"${subhtml}\">
|
|
<div class = \"showmore\">show all ${nimgs} ${subdir##*/} wallpapers </div></a>" >> ./index.html
|
|
touch "${subhtml}"
|
|
|
|
echo "<!DOCTYPE html>
|
|
<html lang=\"en\">
|
|
|
|
<head>
|
|
<meta charset=\"utf-8\">
|
|
<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">
|
|
<title>Gruvbox wallpapers</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Wallpapers for gruvbox</h1>" > "${subhtml}"
|
|
|
|
echo "<h2 id=s"$color">" >> "${subhtml}"
|
|
echo "${subdir##*/}" | tr a-z A-Z >> "${subhtml}"
|
|
echo "</h2>" >> "${subhtml}"
|
|
|
|
echo "<div id=c>" >> "${subhtml}"
|
|
|
|
for wallpaper2 in ${subdir}/*
|
|
do
|
|
echo " <a target=\"_blank\" href=\"$wallpaper2\">
|
|
<img loading=\"lazy\" src=\"$wallpaper2\" alt="$wallpaper2" width=\"200\"></a>" >> "${subhtml}"
|
|
done
|
|
|
|
echo "</div>" >> "${subhtml}"
|
|
|
|
echo "<p> Contributions <a href=\"https://github.com/AngelJumbo/gruvbox-wallpapers\">here</a>.</p>
|
|
<p> This images are from random sites or contributions so I don't have a way to know who are their original artist.</p>
|
|
<p> I want to keep this site as simple as possible, but if you are the creator of any of these images and you want acknowledgment I will happily add a section with your name. Just open an issue <a href=\"https://github.com/AngelJumbo/gruvbox-wallpapers/issues\">here</a>.</p>
|
|
<p> The same goes, if you want me to remove your art.</p>
|
|
</body>
|
|
</html>" >> "${subhtml}"
|
|
break
|
|
fi
|
|
|
|
done
|
|
|
|
echo "</div>" >> ./index.html
|
|
|
|
color=$((color+1))
|
|
if [ "$color" -eq 8 ]; then
|
|
color=1
|
|
fi
|
|
done
|
|
|
|
echo "<p> Contributions <a href=\"https://github.com/AngelJumbo/gruvbox-wallpapers\">here</a>.</p>
|
|
<p> This images are from random sites or contributions so I don't have a way to know who are their original artist.</p>
|
|
<p> I want to keep this site as simple as possible, but if you are the creator of any of these images and you want acknowledgment I will happily add a section with your name. Just open an issue <a href=\"https://github.com/AngelJumbo/gruvbox-wallpapers/issues\">here</a>.</p>
|
|
<p> The same goes, if you want me to remove your art.</p>
|
|
</body>
|
|
</html>" >> ./index.html
|