#!/bin/sh touch ./index.html echo " Gruvbox wallpapers

Wallpapers for gruvbox

" > ./index.html n=1 for i in ./wallpapers/* do subdir=$i echo "> ./index.html echo "id=s"$n">" >> ./index.html echo "${subdir##*/}" | tr a-z A-Z >> ./index.html echo "" >> ./index.html echo "
" >> ./index.html for j in ${subdir}/* do echo " $j" >> ./index.html done echo "
" >> ./index.html n=$((n+1)) if [ "$n" -eq 8 ]; then n=1 fi done echo "

Contributions here.

This images are from random sites or contributions so I don't have a way to know who are their original artist.

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 here.

The same goes, if you want me to remove your art.

" >> ./index.html