commit c42b2586173000d44301fa7259fd395abb085cd6 Author: joygnu Date: Tue Jul 16 22:30:25 2024 +0200 Wallpapers diff --git a/app.js b/app.js new file mode 100644 index 0000000..39853ed --- /dev/null +++ b/app.js @@ -0,0 +1,60 @@ +function loadPage(section, page) { + let buttons = document.getElementById(section).getElementsByTagName("button"); + let currSel; + for (let i in buttons) { + if (buttons[i].classList?.contains("selected")) { + if (page - 1 == i) return; + else { + currSel = buttons[i]; + break; + } + } + } + + fetch(section + "_page" + page + ".html") + .then((response) => response.text()) + .then((data) => { + document.getElementById(section + "-content").innerHTML = data; + if (currSel) { + currSel.classList.remove("selected"); + } + document.getElementById(section).getElementsByTagName("button")[page - 1].classList.add("selected"); + }); +} + +function activeSection(section) { + hideAll(); + + const targetSection = document.getElementById(section); + targetSection.focus(); + targetSection.classList.add("selected"); + setTimeout(() => { + targetSection.scrollIntoView({ block: "start", behavior: "smooth" }); + }, 100); +} + +function hideAll() { + document.querySelectorAll(".section").forEach((s) => { + s.classList.remove("selected"); + }); +} +const HIDDEN_CLASS = "hidden"; + +function hideThemeSwitcher(currentTheme) { + if (currentTheme == "dark") { + document.getElementById("dark-icon")?.classList.add(HIDDEN_CLASS); + document.getElementById("light-icon")?.classList.remove(HIDDEN_CLASS); + } else { + document.getElementById("light-icon")?.classList.add(HIDDEN_CLASS); + document.getElementById("dark-icon")?.classList.remove(HIDDEN_CLASS); + } +} +function setTheme(newTheme) { + document.documentElement.style.setProperty("color-scheme", newTheme); + hideThemeSwitcher(newTheme); +} + +function switchTheme() { + setTheme(document.documentElement.style.getPropertyValue("color-scheme")=="dark"?"light":"dark"); +} + diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..472f81d --- /dev/null +++ b/build.sh @@ -0,0 +1,146 @@ +#!/usr/bin/env bash + +# MIT License +# Copyright (c) 2022 Angel Jumbo +# +# 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. + + +write_section_header(){ + echo "

" >> $3 + echo "$2" | tr a-z A-Z >> $3 + echo "

" >> $3 +} + +write_img(){ + echo " +$1" >> $2 +} + +rm *.html + +touch ./index.html + +echo " + + + + + + + Gruvbox wallpapers + + + + + +
+ + + + + + +
+
+

Gruvbox Wallpapers

" > ./index.html + +color=1 + +maxPerPage=8 + +declare -a sections + +for subdir in ./wallpapers/* +do + section="${subdir##*/}" + sections+=("$section") + write_section_header $color "$section" ./index.html + + + page=1 + img_count=0 + subhtml="${section}_page${page}.html" + touch ./$subhtml + + echo "
" >> ./index.html + + echo "
" >> ./index.html + countImgs=$(find "$subdir" -type f | wc -l) + countImgs=$((countImgs - 1)) + for i in $(seq 1 $((( $countImgs / $maxPerPage)+1))); do + echo "" >> ./index.html + done + echo "
" >> ./index.html + echo "
" >> ./index.html + echo "
" >> ./$subhtml + for wallpaper in ${subdir}/* + do + if [ "$img_count" -ge $maxPerPage ]; then + + echo "
" >> ./$subhtml + page=$((page + 1)) + subhtml="${section}_page${page}.html" + touch ./$subhtml + + + echo "
" >> ./$subhtml + img_count=0 + fi + + write_img $wallpaper ./$subhtml + img_count=$((img_count + 1)) + done + + echo "
" >> ./$subhtml + + echo "
" >> ./index.html + echo "
" >> ./index.html + + color=$((color + 1)) + if [ "$color" -eq 8 ]; then + color=1 + fi +done +echo "
" >> ./index.html +echo "" >> ./index.html + + +echo " + +" >> ./index.html diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..9ae6649 Binary files /dev/null and b/favicon.ico differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..e589105 --- /dev/null +++ b/index.html @@ -0,0 +1,128 @@ + + + + + + + + Gruvbox wallpapers + + + + + +
+ + + + + + +
+
+

Gruvbox Wallpapers

+

+ANIME +

+
+
+ + +
+
+
+
+

+IRL +

+
+
+ + + + + + + +
+
+
+
+

+LIGHT +

+
+
+ + +
+
+
+
+

+MINIMALISTIC +

+
+
+ + + + + + +
+
+
+
+

+MIX +

+
+
+ + + + + +
+
+
+
+

+PIXELART +

+
+
+ + + +
+
+
+
+
+ + + + diff --git a/layout.css b/layout.css new file mode 100644 index 0000000..fb795cb --- /dev/null +++ b/layout.css @@ -0,0 +1,37 @@ + +main { + display: flex; + flex-direction: column; + padding: 0 1rem; + flex-grow: 1; +} + +@media screen and (min-width: 640px) { + main { + padding: 0 4rem; + } +} + +@media screen and (min-width: 768px) { + main { + padding: 0 8rem; + } +} + +@media screen and (min-width: 1024px) { + main { + padding: 0 12rem; + } +} + +@media screen and (min-width: 1280px) { + main { + padding: 0 14rem; + } +} + +@media screen and (min-width: 1536px) { + main { + padding: 0 18rem; + } +} \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..9ad3353 --- /dev/null +++ b/style.css @@ -0,0 +1,163 @@ +@import url("/layout.css"); + +:root { + color-scheme: light dark; + --bg-color: light-dark(#fbf1c7, #282828); + --fg-color: light-dark(#3c3836, #ebdbb2); + + --bg-color-reverse: light-dark(#3c3836, #ebdbb2); + --fg-color-reverse: light-dark(#fbf1c7, #282828); + + --bg-color-3: light-dark(#bdae93, #665c54); + --bg-color-3-switch: light-dark(#665c54, #bdae93); + --bg-color-hard: light-dark(#f9f5d7, #1d2021); + --gray: light-dark(#7c6f64, #a89984); + + --orange: #d65d0e; + --red: #cc241d; + --green: #98971a; + --yellow: #d79921; + --blue: #458588; + --purple: #b16286; + --aqua: #689d6a; + + --orange-dim: light-dark(#af3a03, #fe8019); + --red-dim: light-dark(#9d0006, #fb4934); + --green-dim: light-dark(#79740e, #b8bb26); + --yellow-dim: light-dark(#b57614, #fabd2f); + --blue-dim: light-dark(#076678, #83a598); + --purple-dim: light-dark(#8f3f71, #d3869d); + --aqua-dim: light-dark(#427b58, #8ec07c); +} + +body { + background-color: var(--bg-color); + /*container-type: inline-size;*/ + font-family: "Curier New", monospace; + margin: 0; + min-height: 100svh; + flex-direction: column; + justify-content: space-evenly; +} + +* { + color: var(--fg-color); + border: none; + box-sizing: border-box; +} + +h1, +h2 { + background-color: var(--bg-color-reverse); + color: var(--fg-color-reverse); + text-align: center; + text-decoration: none; +} + +.s1, .s2, .s3, .s4, .s5, .s6, .s7 { + transition: background 0.7s ease-in-out; + margin-bottom: 0; + &:hover { background-color: var(--dim-color); } +} + +.s1 { background-color: var(--orange); --dim-color: var(--orange-dim); } +.s2 { background-color: var(--red); --dim-color: var(--red-dim); } +.s3 { background-color: var(--green); --dim-color: var(--green-dim); } +.s4 { background-color: var(--yellow); --dim-color: var(--yellow-dim); } +.s5 { background-color: var(--blue); --dim-color: var(--blue-dim); } +.s6 { background-color: var(--purple); --dim-color: var(--purple-dim); } +.s7 { background-color: var(--aqua); --dim-color: var(--aqua-dim); } + +.c { + padding: 1em; + background-color: var(--bg-color-3); + text-align: center; +} + +img { + transition: all 0.2s ease-in-out; +} + +img:hover { + transform: scale(1.5); + border: none; + box-shadow: 5px 4px 10px black; +} + +.pager { + margin-top: 5px; + margin-bottom: 10px; + padding: 5px; + color: var(--fg-color-reverse); + text-align: center; +} + +.btn { + transition: background 0.4s ease-in-out; + + cursor: pointer; + background-color: var(--bg-color-reverse); + color: var(--fg-color-reverse); + display: inline-flex; + flex-direction: column; + justify-content: center; + align-items: center; + + &:hover { + background-color: var(--bg-color-3-switch); + } +} + +.btn.pager-btn { + padding: 10px 20px; + font-size: 16px; + font-weight: 900; + margin: 4px 2px; + + &.selected { + background-color: var(--bg-color); + color: var(--fg-color); + + border-color: var(--fg-color); + border-width: thick; + border-style: solid; + } +} + +.clickable { + cursor: pointer; +} + +.section { + display: none; + + &.selected { + display: block; + } +} + +.float-btns { + position: fixed; + bottom: 0; + right: 0; + margin-bottom: 1rem; + margin-right: 1rem; + display: flex; + flex-direction: column; + gap: 0.5rem; + justify-content: end; +} + +.btn.float-btn { + height: 2.5rem; + width: 2.5rem; + font-size: 1.5rem; + + & i { + color: var(--fg-color-reverse); + } +} + +.hidden { + display: none !important; +} diff --git a/wallpapers/anime/5m5kLI9.png b/wallpapers/anime/5m5kLI9.png new file mode 100644 index 0000000..ee3b533 Binary files /dev/null and b/wallpapers/anime/5m5kLI9.png differ diff --git a/wallpapers/anime/The-Wind-Rises.jpg b/wallpapers/anime/The-Wind-Rises.jpg new file mode 100644 index 0000000..c97fe2f Binary files /dev/null and b/wallpapers/anime/The-Wind-Rises.jpg differ diff --git a/wallpapers/anime/classroom.jpg b/wallpapers/anime/classroom.jpg new file mode 100644 index 0000000..0818ea8 Binary files /dev/null and b/wallpapers/anime/classroom.jpg differ diff --git a/wallpapers/anime/cyber-asian-girl-1080.png b/wallpapers/anime/cyber-asian-girl-1080.png new file mode 100644 index 0000000..148e1c7 Binary files /dev/null and b/wallpapers/anime/cyber-asian-girl-1080.png differ diff --git a/wallpapers/anime/elias.jpg b/wallpapers/anime/elias.jpg new file mode 100644 index 0000000..790424c Binary files /dev/null and b/wallpapers/anime/elias.jpg differ diff --git a/wallpapers/anime/gankutsuou.jpg b/wallpapers/anime/gankutsuou.jpg new file mode 100644 index 0000000..5964e40 Binary files /dev/null and b/wallpapers/anime/gankutsuou.jpg differ diff --git a/wallpapers/anime/ghibli-japanese-walled-garden.png b/wallpapers/anime/ghibli-japanese-walled-garden.png new file mode 100644 index 0000000..21faf0c Binary files /dev/null and b/wallpapers/anime/ghibli-japanese-walled-garden.png differ diff --git a/wallpapers/anime/my-neighbor-totoro-sunflowers.png b/wallpapers/anime/my-neighbor-totoro-sunflowers.png new file mode 100644 index 0000000..c1dd233 Binary files /dev/null and b/wallpapers/anime/my-neighbor-totoro-sunflowers.png differ diff --git a/wallpapers/anime/wall.jpg b/wallpapers/anime/wall.jpg new file mode 100644 index 0000000..f9df8f1 Binary files /dev/null and b/wallpapers/anime/wall.jpg differ diff --git a/wallpapers/anime/wallhaven-2e2xyx.jpg b/wallpapers/anime/wallhaven-2e2xyx.jpg new file mode 100644 index 0000000..c85d62f Binary files /dev/null and b/wallpapers/anime/wallhaven-2e2xyx.jpg differ diff --git a/wallpapers/irl/Colors.png b/wallpapers/irl/Colors.png new file mode 100644 index 0000000..a1e35cf Binary files /dev/null and b/wallpapers/irl/Colors.png differ diff --git a/wallpapers/irl/DKoRY7F.jpeg b/wallpapers/irl/DKoRY7F.jpeg new file mode 100644 index 0000000..620409d Binary files /dev/null and b/wallpapers/irl/DKoRY7F.jpeg differ diff --git a/wallpapers/irl/Excl_Autumn_Leaf.jpg b/wallpapers/irl/Excl_Autumn_Leaf.jpg new file mode 100644 index 0000000..26956da Binary files /dev/null and b/wallpapers/irl/Excl_Autumn_Leaf.jpg differ diff --git a/wallpapers/irl/YRAJQAT4Dg-avesta-rezaeizadeh-unsplash.jpg b/wallpapers/irl/YRAJQAT4Dg-avesta-rezaeizadeh-unsplash.jpg new file mode 100644 index 0000000..ae183be Binary files /dev/null and b/wallpapers/irl/YRAJQAT4Dg-avesta-rezaeizadeh-unsplash.jpg differ diff --git a/wallpapers/irl/beach.jpg b/wallpapers/irl/beach.jpg new file mode 100644 index 0000000..e2e3949 Binary files /dev/null and b/wallpapers/irl/beach.jpg differ diff --git a/wallpapers/irl/berries.jpg b/wallpapers/irl/berries.jpg new file mode 100644 index 0000000..f9872cf Binary files /dev/null and b/wallpapers/irl/berries.jpg differ diff --git a/wallpapers/irl/board.jpg b/wallpapers/irl/board.jpg new file mode 100644 index 0000000..3f282b6 Binary files /dev/null and b/wallpapers/irl/board.jpg differ diff --git a/wallpapers/irl/bulbs.jpg b/wallpapers/irl/bulbs.jpg new file mode 100644 index 0000000..a6e20bd Binary files /dev/null and b/wallpapers/irl/bulbs.jpg differ diff --git a/wallpapers/irl/cactus.png b/wallpapers/irl/cactus.png new file mode 100644 index 0000000..7c6e36a Binary files /dev/null and b/wallpapers/irl/cactus.png differ diff --git a/wallpapers/irl/camera.jpg b/wallpapers/irl/camera.jpg new file mode 100644 index 0000000..bb6dc7f Binary files /dev/null and b/wallpapers/irl/camera.jpg differ diff --git a/wallpapers/irl/coffee-cup.jpg b/wallpapers/irl/coffee-cup.jpg new file mode 100644 index 0000000..d070d0f Binary files /dev/null and b/wallpapers/irl/coffee-cup.jpg differ diff --git a/wallpapers/irl/coffee-green.jpg b/wallpapers/irl/coffee-green.jpg new file mode 100644 index 0000000..d54dd70 Binary files /dev/null and b/wallpapers/irl/coffee-green.jpg differ diff --git a/wallpapers/irl/comfy-room.jpg b/wallpapers/irl/comfy-room.jpg new file mode 100644 index 0000000..0f02377 Binary files /dev/null and b/wallpapers/irl/comfy-room.jpg differ diff --git a/wallpapers/irl/ferns-green.jpg b/wallpapers/irl/ferns-green.jpg new file mode 100644 index 0000000..54f6766 Binary files /dev/null and b/wallpapers/irl/ferns-green.jpg differ diff --git a/wallpapers/irl/flower-1.jpg b/wallpapers/irl/flower-1.jpg new file mode 100644 index 0000000..2f1e2d5 Binary files /dev/null and b/wallpapers/irl/flower-1.jpg differ diff --git a/wallpapers/irl/flowers-2.jpg b/wallpapers/irl/flowers-2.jpg new file mode 100644 index 0000000..8ecff3e Binary files /dev/null and b/wallpapers/irl/flowers-2.jpg differ diff --git a/wallpapers/irl/flowers.jpg b/wallpapers/irl/flowers.jpg new file mode 100644 index 0000000..8f0f134 Binary files /dev/null and b/wallpapers/irl/flowers.jpg differ diff --git a/wallpapers/irl/fly_agaric_mushroom_fall_foliage_117318_1920x1080.jpg b/wallpapers/irl/fly_agaric_mushroom_fall_foliage_117318_1920x1080.jpg new file mode 100644 index 0000000..deacbfd Binary files /dev/null and b/wallpapers/irl/fly_agaric_mushroom_fall_foliage_117318_1920x1080.jpg differ diff --git a/wallpapers/irl/forest-2.jpg b/wallpapers/irl/forest-2.jpg new file mode 100644 index 0000000..96fa2f4 Binary files /dev/null and b/wallpapers/irl/forest-2.jpg differ diff --git a/wallpapers/irl/forest-3.jpg b/wallpapers/irl/forest-3.jpg new file mode 100644 index 0000000..0a04516 Binary files /dev/null and b/wallpapers/irl/forest-3.jpg differ diff --git a/wallpapers/irl/forest-foggy-misty-cloudy.png b/wallpapers/irl/forest-foggy-misty-cloudy.png new file mode 100644 index 0000000..07e1143 Binary files /dev/null and b/wallpapers/irl/forest-foggy-misty-cloudy.png differ diff --git a/wallpapers/irl/forest-moss.png b/wallpapers/irl/forest-moss.png new file mode 100644 index 0000000..58f6da7 Binary files /dev/null and b/wallpapers/irl/forest-moss.png differ diff --git a/wallpapers/irl/forest-mountain-cloudy-valley.png b/wallpapers/irl/forest-mountain-cloudy-valley.png new file mode 100644 index 0000000..1f503fc Binary files /dev/null and b/wallpapers/irl/forest-mountain-cloudy-valley.png differ diff --git a/wallpapers/irl/forest-river.jpg b/wallpapers/irl/forest-river.jpg new file mode 100644 index 0000000..59231ad Binary files /dev/null and b/wallpapers/irl/forest-river.jpg differ diff --git a/wallpapers/irl/forest.jpg b/wallpapers/irl/forest.jpg new file mode 100644 index 0000000..41c9ed8 Binary files /dev/null and b/wallpapers/irl/forest.jpg differ diff --git a/wallpapers/irl/girl.jpg b/wallpapers/irl/girl.jpg new file mode 100644 index 0000000..5a449c8 Binary files /dev/null and b/wallpapers/irl/girl.jpg differ diff --git a/wallpapers/irl/gruvbox-forest.jpg b/wallpapers/irl/gruvbox-forest.jpg new file mode 100644 index 0000000..0941f18 Binary files /dev/null and b/wallpapers/irl/gruvbox-forest.jpg differ diff --git a/wallpapers/irl/house.jpg b/wallpapers/irl/house.jpg new file mode 100644 index 0000000..84442f1 Binary files /dev/null and b/wallpapers/irl/house.jpg differ diff --git a/wallpapers/irl/houseonthesideofalake.jpg b/wallpapers/irl/houseonthesideofalake.jpg new file mode 100644 index 0000000..9809165 Binary files /dev/null and b/wallpapers/irl/houseonthesideofalake.jpg differ diff --git a/wallpapers/irl/lantern.jpg b/wallpapers/irl/lantern.jpg new file mode 100644 index 0000000..fcae27f Binary files /dev/null and b/wallpapers/irl/lantern.jpg differ diff --git a/wallpapers/irl/leaves-2.jpg b/wallpapers/irl/leaves-2.jpg new file mode 100644 index 0000000..70bf5d7 Binary files /dev/null and b/wallpapers/irl/leaves-2.jpg differ diff --git a/wallpapers/irl/leaves-wall.png b/wallpapers/irl/leaves-wall.png new file mode 100644 index 0000000..d3a27b6 Binary files /dev/null and b/wallpapers/irl/leaves-wall.png differ diff --git a/wallpapers/irl/leaves.jpg b/wallpapers/irl/leaves.jpg new file mode 100644 index 0000000..0b66a4e Binary files /dev/null and b/wallpapers/irl/leaves.jpg differ diff --git a/wallpapers/irl/marketplace.jpg b/wallpapers/irl/marketplace.jpg new file mode 100644 index 0000000..49f9aa1 Binary files /dev/null and b/wallpapers/irl/marketplace.jpg differ diff --git a/wallpapers/irl/mate-2.jpg b/wallpapers/irl/mate-2.jpg new file mode 100644 index 0000000..3fd6085 Binary files /dev/null and b/wallpapers/irl/mate-2.jpg differ diff --git a/wallpapers/irl/mate-3.jpg b/wallpapers/irl/mate-3.jpg new file mode 100644 index 0000000..ea4a7e9 Binary files /dev/null and b/wallpapers/irl/mate-3.jpg differ diff --git a/wallpapers/irl/mountains2.jpg b/wallpapers/irl/mountains2.jpg new file mode 100644 index 0000000..7f4ad7c Binary files /dev/null and b/wallpapers/irl/mountains2.jpg differ diff --git a/wallpapers/irl/not-so-gruv-city.jpg b/wallpapers/irl/not-so-gruv-city.jpg new file mode 100644 index 0000000..b3c9953 Binary files /dev/null and b/wallpapers/irl/not-so-gruv-city.jpg differ diff --git a/wallpapers/irl/qJYK2SS.jpeg b/wallpapers/irl/qJYK2SS.jpeg new file mode 100644 index 0000000..877f60f Binary files /dev/null and b/wallpapers/irl/qJYK2SS.jpeg differ diff --git a/wallpapers/irl/rails.jpg b/wallpapers/irl/rails.jpg new file mode 100644 index 0000000..4044803 Binary files /dev/null and b/wallpapers/irl/rails.jpg differ diff --git a/wallpapers/irl/rain.jpg b/wallpapers/irl/rain.jpg new file mode 100644 index 0000000..bf8777c Binary files /dev/null and b/wallpapers/irl/rain.jpg differ diff --git a/wallpapers/irl/rose.jpg b/wallpapers/irl/rose.jpg new file mode 100644 index 0000000..c449996 Binary files /dev/null and b/wallpapers/irl/rose.jpg differ diff --git a/wallpapers/irl/rose01.jpg b/wallpapers/irl/rose01.jpg new file mode 100644 index 0000000..bb29c4b Binary files /dev/null and b/wallpapers/irl/rose01.jpg differ diff --git a/wallpapers/irl/staircase.jpg b/wallpapers/irl/staircase.jpg new file mode 100644 index 0000000..fc99574 Binary files /dev/null and b/wallpapers/irl/staircase.jpg differ diff --git a/wallpapers/irl/stairs.jpg b/wallpapers/irl/stairs.jpg new file mode 100644 index 0000000..17fa814 Binary files /dev/null and b/wallpapers/irl/stairs.jpg differ diff --git a/wallpapers/irl/street.jpg b/wallpapers/irl/street.jpg new file mode 100644 index 0000000..e7a4b3d Binary files /dev/null and b/wallpapers/irl/street.jpg differ diff --git a/wallpapers/irl/sunforest.jpg b/wallpapers/irl/sunforest.jpg new file mode 100644 index 0000000..bedf0b0 Binary files /dev/null and b/wallpapers/irl/sunforest.jpg differ diff --git a/wallpapers/irl/tTIlCNT.jpeg b/wallpapers/irl/tTIlCNT.jpeg new file mode 100644 index 0000000..6faa00b Binary files /dev/null and b/wallpapers/irl/tTIlCNT.jpeg differ diff --git a/wallpapers/irl/woods.jpg b/wallpapers/irl/woods.jpg new file mode 100644 index 0000000..3f461f8 Binary files /dev/null and b/wallpapers/irl/woods.jpg differ diff --git a/wallpapers/light/8207838.png b/wallpapers/light/8207838.png new file mode 100644 index 0000000..6e08ad6 Binary files /dev/null and b/wallpapers/light/8207838.png differ diff --git a/wallpapers/light/DemonChild.png b/wallpapers/light/DemonChild.png new file mode 100644 index 0000000..2573b82 Binary files /dev/null and b/wallpapers/light/DemonChild.png differ diff --git a/wallpapers/light/Knights.png b/wallpapers/light/Knights.png new file mode 100644 index 0000000..e45fbc1 Binary files /dev/null and b/wallpapers/light/Knights.png differ diff --git a/wallpapers/light/Kojiro.png b/wallpapers/light/Kojiro.png new file mode 100644 index 0000000..ebfe976 Binary files /dev/null and b/wallpapers/light/Kojiro.png differ diff --git a/wallpapers/light/Pages.png b/wallpapers/light/Pages.png new file mode 100644 index 0000000..6457411 Binary files /dev/null and b/wallpapers/light/Pages.png differ diff --git a/wallpapers/light/Sif.png b/wallpapers/light/Sif.png new file mode 100644 index 0000000..4909977 Binary files /dev/null and b/wallpapers/light/Sif.png differ diff --git a/wallpapers/light/Tranquility.png b/wallpapers/light/Tranquility.png new file mode 100644 index 0000000..b54a9df Binary files /dev/null and b/wallpapers/light/Tranquility.png differ diff --git a/wallpapers/light/bird.jpg b/wallpapers/light/bird.jpg new file mode 100644 index 0000000..b55a954 Binary files /dev/null and b/wallpapers/light/bird.jpg differ diff --git a/wallpapers/light/cat-coffee.png b/wallpapers/light/cat-coffee.png new file mode 100644 index 0000000..d9c0343 Binary files /dev/null and b/wallpapers/light/cat-coffee.png differ diff --git a/wallpapers/light/chinese-hills.jpg b/wallpapers/light/chinese-hills.jpg new file mode 100644 index 0000000..34ecc99 Binary files /dev/null and b/wallpapers/light/chinese-hills.jpg differ diff --git a/wallpapers/light/code_blocks_light.png b/wallpapers/light/code_blocks_light.png new file mode 100644 index 0000000..e55a96b Binary files /dev/null and b/wallpapers/light/code_blocks_light.png differ diff --git a/wallpapers/light/gojira.jpg b/wallpapers/light/gojira.jpg new file mode 100644 index 0000000..6d73fc2 Binary files /dev/null and b/wallpapers/light/gojira.jpg differ diff --git a/wallpapers/light/gruv-buildings.png b/wallpapers/light/gruv-buildings.png new file mode 100644 index 0000000..eb47759 Binary files /dev/null and b/wallpapers/light/gruv-buildings.png differ diff --git a/wallpapers/light/gruvbox_light_linux.png b/wallpapers/light/gruvbox_light_linux.png new file mode 100644 index 0000000..908c172 Binary files /dev/null and b/wallpapers/light/gruvbox_light_linux.png differ diff --git a/wallpapers/minimalistic/ALLqk82.png b/wallpapers/minimalistic/ALLqk82.png new file mode 100644 index 0000000..18aa262 Binary files /dev/null and b/wallpapers/minimalistic/ALLqk82.png differ diff --git a/wallpapers/minimalistic/PJbX0MG.png b/wallpapers/minimalistic/PJbX0MG.png new file mode 100644 index 0000000..75ee301 Binary files /dev/null and b/wallpapers/minimalistic/PJbX0MG.png differ diff --git a/wallpapers/minimalistic/UbuntuGnome.png b/wallpapers/minimalistic/UbuntuGnome.png new file mode 100644 index 0000000..e4ac2f0 Binary files /dev/null and b/wallpapers/minimalistic/UbuntuGnome.png differ diff --git a/wallpapers/minimalistic/awesome.jpg b/wallpapers/minimalistic/awesome.jpg new file mode 100644 index 0000000..a23a943 Binary files /dev/null and b/wallpapers/minimalistic/awesome.jpg differ diff --git a/wallpapers/minimalistic/debian_grey_swirl.png b/wallpapers/minimalistic/debian_grey_swirl.png new file mode 100644 index 0000000..d84bd8a Binary files /dev/null and b/wallpapers/minimalistic/debian_grey_swirl.png differ diff --git a/wallpapers/minimalistic/finalizer.png b/wallpapers/minimalistic/finalizer.png new file mode 100644 index 0000000..661b35b Binary files /dev/null and b/wallpapers/minimalistic/finalizer.png differ diff --git a/wallpapers/minimalistic/firefox.png b/wallpapers/minimalistic/firefox.png new file mode 100644 index 0000000..9a13f0d Binary files /dev/null and b/wallpapers/minimalistic/firefox.png differ diff --git a/wallpapers/minimalistic/gnu.jpg b/wallpapers/minimalistic/gnu.jpg new file mode 100644 index 0000000..b04f82b Binary files /dev/null and b/wallpapers/minimalistic/gnu.jpg differ diff --git a/wallpapers/minimalistic/gnulinux.png b/wallpapers/minimalistic/gnulinux.png new file mode 100644 index 0000000..d83243a Binary files /dev/null and b/wallpapers/minimalistic/gnulinux.png differ diff --git a/wallpapers/minimalistic/great-wave-of-kanagawa-gruvbox.png b/wallpapers/minimalistic/great-wave-of-kanagawa-gruvbox.png new file mode 100644 index 0000000..cb4f073 Binary files /dev/null and b/wallpapers/minimalistic/great-wave-of-kanagawa-gruvbox.png differ diff --git a/wallpapers/minimalistic/gruv-abstract-maze.png b/wallpapers/minimalistic/gruv-abstract-maze.png new file mode 100644 index 0000000..d670bb4 Binary files /dev/null and b/wallpapers/minimalistic/gruv-abstract-maze.png differ diff --git a/wallpapers/minimalistic/gruv-commit.png b/wallpapers/minimalistic/gruv-commit.png new file mode 100644 index 0000000..56d1193 Binary files /dev/null and b/wallpapers/minimalistic/gruv-commit.png differ diff --git a/wallpapers/minimalistic/gruv-estimate.png b/wallpapers/minimalistic/gruv-estimate.png new file mode 100644 index 0000000..1bbbba3 Binary files /dev/null and b/wallpapers/minimalistic/gruv-estimate.png differ diff --git a/wallpapers/minimalistic/gruv-focus.png b/wallpapers/minimalistic/gruv-focus.png new file mode 100644 index 0000000..c1b2af4 Binary files /dev/null and b/wallpapers/minimalistic/gruv-focus.png differ diff --git a/wallpapers/minimalistic/gruv-kanji.png b/wallpapers/minimalistic/gruv-kanji.png new file mode 100644 index 0000000..7cef872 Binary files /dev/null and b/wallpapers/minimalistic/gruv-kanji.png differ diff --git a/wallpapers/minimalistic/gruv-limits.png b/wallpapers/minimalistic/gruv-limits.png new file mode 100644 index 0000000..cbbddad Binary files /dev/null and b/wallpapers/minimalistic/gruv-limits.png differ diff --git a/wallpapers/minimalistic/gruv-mistakes.png b/wallpapers/minimalistic/gruv-mistakes.png new file mode 100644 index 0000000..90311f5 Binary files /dev/null and b/wallpapers/minimalistic/gruv-mistakes.png differ diff --git a/wallpapers/minimalistic/gruv-portal-cake.png b/wallpapers/minimalistic/gruv-portal-cake.png new file mode 100644 index 0000000..0bbb31c Binary files /dev/null and b/wallpapers/minimalistic/gruv-portal-cake.png differ diff --git a/wallpapers/minimalistic/gruv-samurai-cyberpunk2077.png b/wallpapers/minimalistic/gruv-samurai-cyberpunk2077.png new file mode 100644 index 0000000..4fb8f8a Binary files /dev/null and b/wallpapers/minimalistic/gruv-samurai-cyberpunk2077.png differ diff --git a/wallpapers/minimalistic/gruv-understand.png b/wallpapers/minimalistic/gruv-understand.png new file mode 100644 index 0000000..130626c Binary files /dev/null and b/wallpapers/minimalistic/gruv-understand.png differ diff --git a/wallpapers/minimalistic/gruv-wallhaven-4yj28l.png b/wallpapers/minimalistic/gruv-wallhaven-4yj28l.png new file mode 100644 index 0000000..32405e2 Binary files /dev/null and b/wallpapers/minimalistic/gruv-wallhaven-4yj28l.png differ diff --git a/wallpapers/minimalistic/gruv.jpg b/wallpapers/minimalistic/gruv.jpg new file mode 100644 index 0000000..207a8c5 Binary files /dev/null and b/wallpapers/minimalistic/gruv.jpg differ diff --git a/wallpapers/minimalistic/gruvb_solarsys.png b/wallpapers/minimalistic/gruvb_solarsys.png new file mode 100644 index 0000000..c8fab98 Binary files /dev/null and b/wallpapers/minimalistic/gruvb_solarsys.png differ diff --git a/wallpapers/minimalistic/gruvbox-linux.png b/wallpapers/minimalistic/gruvbox-linux.png new file mode 100644 index 0000000..ab1617c Binary files /dev/null and b/wallpapers/minimalistic/gruvbox-linux.png differ diff --git a/wallpapers/minimalistic/gruvbox-nix.png b/wallpapers/minimalistic/gruvbox-nix.png new file mode 100644 index 0000000..413aa32 Binary files /dev/null and b/wallpapers/minimalistic/gruvbox-nix.png differ diff --git a/wallpapers/minimalistic/gruvbox-rainbow-nix.png b/wallpapers/minimalistic/gruvbox-rainbow-nix.png new file mode 100644 index 0000000..9832948 Binary files /dev/null and b/wallpapers/minimalistic/gruvbox-rainbow-nix.png differ diff --git a/wallpapers/minimalistic/gruvbox_astro.jpg b/wallpapers/minimalistic/gruvbox_astro.jpg new file mode 100644 index 0000000..37614bb Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_astro.jpg differ diff --git a/wallpapers/minimalistic/gruvbox_grid.png b/wallpapers/minimalistic/gruvbox_grid.png new file mode 100644 index 0000000..f1c9640 Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_grid.png differ diff --git a/wallpapers/minimalistic/gruvbox_kubuntuGear.jpg b/wallpapers/minimalistic/gruvbox_kubuntuGear.jpg new file mode 100644 index 0000000..0f943da Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_kubuntuGear.jpg differ diff --git a/wallpapers/minimalistic/gruvbox_minimal_space.png b/wallpapers/minimalistic/gruvbox_minimal_space.png new file mode 100644 index 0000000..65d74d8 Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_minimal_space.png differ diff --git a/wallpapers/minimalistic/gruvbox_spac.jpg b/wallpapers/minimalistic/gruvbox_spac.jpg new file mode 100644 index 0000000..5b72abd Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_spac.jpg differ diff --git a/wallpapers/minimalistic/gruvbox_ubuntu-splash.jpg b/wallpapers/minimalistic/gruvbox_ubuntu-splash.jpg new file mode 100644 index 0000000..1447d79 Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_ubuntu-splash.jpg differ diff --git a/wallpapers/minimalistic/gruvbox_ubuntu.png b/wallpapers/minimalistic/gruvbox_ubuntu.png new file mode 100644 index 0000000..b59af3d Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_ubuntu.png differ diff --git a/wallpapers/minimalistic/gruvbox_void_linux.png b/wallpapers/minimalistic/gruvbox_void_linux.png new file mode 100644 index 0000000..7c697ce Binary files /dev/null and b/wallpapers/minimalistic/gruvbox_void_linux.png differ diff --git a/wallpapers/minimalistic/haz-mat.png b/wallpapers/minimalistic/haz-mat.png new file mode 100644 index 0000000..5a9b71d Binary files /dev/null and b/wallpapers/minimalistic/haz-mat.png differ diff --git a/wallpapers/minimalistic/pacman-ghosts.jpg b/wallpapers/minimalistic/pacman-ghosts.jpg new file mode 100644 index 0000000..021abeb Binary files /dev/null and b/wallpapers/minimalistic/pacman-ghosts.jpg differ diff --git a/wallpapers/minimalistic/solar-system-minimal.png b/wallpapers/minimalistic/solar-system-minimal.png new file mode 100644 index 0000000..9585e21 Binary files /dev/null and b/wallpapers/minimalistic/solar-system-minimal.png differ diff --git a/wallpapers/minimalistic/sve.png b/wallpapers/minimalistic/sve.png new file mode 100644 index 0000000..49f8466 Binary files /dev/null and b/wallpapers/minimalistic/sve.png differ diff --git a/wallpapers/minimalistic/wallhaven-7p6g99.png b/wallpapers/minimalistic/wallhaven-7p6g99.png new file mode 100644 index 0000000..3d3c57b Binary files /dev/null and b/wallpapers/minimalistic/wallhaven-7p6g99.png differ diff --git a/wallpapers/minimalistic/wp11058332.png b/wallpapers/minimalistic/wp11058332.png new file mode 100644 index 0000000..7751d5c Binary files /dev/null and b/wallpapers/minimalistic/wp11058332.png differ diff --git a/wallpapers/minimalistic/wp11058333.png b/wallpapers/minimalistic/wp11058333.png new file mode 100644 index 0000000..d3afa29 Binary files /dev/null and b/wallpapers/minimalistic/wp11058333.png differ diff --git a/wallpapers/mix/1.jpg b/wallpapers/mix/1.jpg new file mode 100644 index 0000000..8f6a447 Binary files /dev/null and b/wallpapers/mix/1.jpg differ diff --git a/wallpapers/mix/abstract-darkhole.png b/wallpapers/mix/abstract-darkhole.png new file mode 100644 index 0000000..b9d5f35 Binary files /dev/null and b/wallpapers/mix/abstract-darkhole.png differ diff --git a/wallpapers/mix/among-us.jpg b/wallpapers/mix/among-us.jpg new file mode 100644 index 0000000..7ab6445 Binary files /dev/null and b/wallpapers/mix/among-us.jpg differ diff --git a/wallpapers/mix/astronaut.jpg b/wallpapers/mix/astronaut.jpg new file mode 100644 index 0000000..f409a16 Binary files /dev/null and b/wallpapers/mix/astronaut.jpg differ diff --git a/wallpapers/mix/chinatown.jpg b/wallpapers/mix/chinatown.jpg new file mode 100644 index 0000000..20ce431 Binary files /dev/null and b/wallpapers/mix/chinatown.jpg differ diff --git a/wallpapers/mix/dalek.jpg b/wallpapers/mix/dalek.jpg new file mode 100644 index 0000000..2d35a52 Binary files /dev/null and b/wallpapers/mix/dalek.jpg differ diff --git a/wallpapers/mix/dead-robot.jpg b/wallpapers/mix/dead-robot.jpg new file mode 100644 index 0000000..7f686ad Binary files /dev/null and b/wallpapers/mix/dead-robot.jpg differ diff --git a/wallpapers/mix/evil.jpeg b/wallpapers/mix/evil.jpeg new file mode 100644 index 0000000..59f1a38 Binary files /dev/null and b/wallpapers/mix/evil.jpeg differ diff --git a/wallpapers/mix/flower.jpg b/wallpapers/mix/flower.jpg new file mode 100644 index 0000000..a1fddfb Binary files /dev/null and b/wallpapers/mix/flower.jpg differ diff --git a/wallpapers/mix/free.jpg b/wallpapers/mix/free.jpg new file mode 100644 index 0000000..ce6e39c Binary files /dev/null and b/wallpapers/mix/free.jpg differ diff --git a/wallpapers/mix/fsociety.jpg b/wallpapers/mix/fsociety.jpg new file mode 100644 index 0000000..6176494 Binary files /dev/null and b/wallpapers/mix/fsociety.jpg differ diff --git a/wallpapers/mix/future-town.jpg b/wallpapers/mix/future-town.jpg new file mode 100644 index 0000000..ee3e54e Binary files /dev/null and b/wallpapers/mix/future-town.jpg differ diff --git a/wallpapers/mix/futurism.jpg b/wallpapers/mix/futurism.jpg new file mode 100644 index 0000000..5d125be Binary files /dev/null and b/wallpapers/mix/futurism.jpg differ diff --git a/wallpapers/mix/greek.jpg b/wallpapers/mix/greek.jpg new file mode 100644 index 0000000..f41e730 Binary files /dev/null and b/wallpapers/mix/greek.jpg differ diff --git a/wallpapers/mix/gruv-material.png b/wallpapers/mix/gruv-material.png new file mode 100644 index 0000000..6d4ce32 Binary files /dev/null and b/wallpapers/mix/gruv-material.png differ diff --git a/wallpapers/mix/gruv-sushi-streets.jpg b/wallpapers/mix/gruv-sushi-streets.jpg new file mode 100644 index 0000000..2de6284 Binary files /dev/null and b/wallpapers/mix/gruv-sushi-streets.jpg differ diff --git a/wallpapers/mix/gruvb99810.png b/wallpapers/mix/gruvb99810.png new file mode 100644 index 0000000..f4759a2 Binary files /dev/null and b/wallpapers/mix/gruvb99810.png differ diff --git a/wallpapers/mix/gruvbox15.png b/wallpapers/mix/gruvbox15.png new file mode 100644 index 0000000..984c887 Binary files /dev/null and b/wallpapers/mix/gruvbox15.png differ diff --git a/wallpapers/mix/gruvy-night.jpg b/wallpapers/mix/gruvy-night.jpg new file mode 100644 index 0000000..81c77ad Binary files /dev/null and b/wallpapers/mix/gruvy-night.jpg differ diff --git a/wallpapers/mix/gruvy.jpg b/wallpapers/mix/gruvy.jpg new file mode 100644 index 0000000..0436fbc Binary files /dev/null and b/wallpapers/mix/gruvy.jpg differ diff --git a/wallpapers/mix/hotline-miami.jpg b/wallpapers/mix/hotline-miami.jpg new file mode 100644 index 0000000..f5c4476 Binary files /dev/null and b/wallpapers/mix/hotline-miami.jpg differ diff --git a/wallpapers/mix/houses.jpg b/wallpapers/mix/houses.jpg new file mode 100644 index 0000000..63ef2ff Binary files /dev/null and b/wallpapers/mix/houses.jpg differ diff --git a/wallpapers/mix/mad.jpg b/wallpapers/mix/mad.jpg new file mode 100644 index 0000000..13ec8a1 Binary files /dev/null and b/wallpapers/mix/mad.jpg differ diff --git a/wallpapers/mix/night_moon.png b/wallpapers/mix/night_moon.png new file mode 100644 index 0000000..afbcc77 Binary files /dev/null and b/wallpapers/mix/night_moon.png differ diff --git a/wallpapers/mix/platform.jpg b/wallpapers/mix/platform.jpg new file mode 100644 index 0000000..7f25bcf Binary files /dev/null and b/wallpapers/mix/platform.jpg differ diff --git a/wallpapers/mix/qcqKfdZ.png b/wallpapers/mix/qcqKfdZ.png new file mode 100644 index 0000000..0cef092 Binary files /dev/null and b/wallpapers/mix/qcqKfdZ.png differ diff --git a/wallpapers/mix/ruines.jpg b/wallpapers/mix/ruines.jpg new file mode 100644 index 0000000..c14962b Binary files /dev/null and b/wallpapers/mix/ruines.jpg differ diff --git a/wallpapers/mix/satellite.jpg b/wallpapers/mix/satellite.jpg new file mode 100644 index 0000000..dcd38dd Binary files /dev/null and b/wallpapers/mix/satellite.jpg differ diff --git a/wallpapers/mix/skull.jpg b/wallpapers/mix/skull.jpg new file mode 100644 index 0000000..e91eb7e Binary files /dev/null and b/wallpapers/mix/skull.jpg differ diff --git a/wallpapers/mix/solar-system.jpg b/wallpapers/mix/solar-system.jpg new file mode 100644 index 0000000..1c48f90 Binary files /dev/null and b/wallpapers/mix/solar-system.jpg differ diff --git a/wallpapers/mix/spaceship_maze.jpg b/wallpapers/mix/spaceship_maze.jpg new file mode 100644 index 0000000..a4b0415 Binary files /dev/null and b/wallpapers/mix/spaceship_maze.jpg differ diff --git a/wallpapers/mix/titlwinzbst81.jpg b/wallpapers/mix/titlwinzbst81.jpg new file mode 100644 index 0000000..af213cc Binary files /dev/null and b/wallpapers/mix/titlwinzbst81.jpg differ diff --git a/wallpapers/mix/wall.jpg b/wallpapers/mix/wall.jpg new file mode 100644 index 0000000..9d2fb13 Binary files /dev/null and b/wallpapers/mix/wall.jpg differ diff --git a/wallpapers/mix/wallhaven-vmk698.jpg b/wallpapers/mix/wallhaven-vmk698.jpg new file mode 100644 index 0000000..9de9e2a Binary files /dev/null and b/wallpapers/mix/wallhaven-vmk698.jpg differ diff --git a/wallpapers/mix/wallhaven-z85eoy.jpg b/wallpapers/mix/wallhaven-z85eoy.jpg new file mode 100644 index 0000000..994fdd2 Binary files /dev/null and b/wallpapers/mix/wallhaven-z85eoy.jpg differ diff --git a/wallpapers/mix/wolf.jpg b/wallpapers/mix/wolf.jpg new file mode 100644 index 0000000..661d973 Binary files /dev/null and b/wallpapers/mix/wolf.jpg differ diff --git a/wallpapers/mix/xavier-cuenca-w4-3.jpg b/wallpapers/mix/xavier-cuenca-w4-3.jpg new file mode 100644 index 0000000..70ad970 Binary files /dev/null and b/wallpapers/mix/xavier-cuenca-w4-3.jpg differ diff --git a/wallpapers/pixelart/brown_city_planet_w.jpg b/wallpapers/pixelart/brown_city_planet_w.jpg new file mode 100644 index 0000000..ea7e8f2 Binary files /dev/null and b/wallpapers/pixelart/brown_city_planet_w.jpg differ diff --git a/wallpapers/pixelart/dock.jpg b/wallpapers/pixelart/dock.jpg new file mode 100644 index 0000000..d5afcba Binary files /dev/null and b/wallpapers/pixelart/dock.jpg differ diff --git a/wallpapers/pixelart/girl-reading-book.jpg b/wallpapers/pixelart/girl-reading-book.jpg new file mode 100644 index 0000000..f67c92a Binary files /dev/null and b/wallpapers/pixelart/girl-reading-book.jpg differ diff --git a/wallpapers/pixelart/gruvbox-pacman-full.png b/wallpapers/pixelart/gruvbox-pacman-full.png new file mode 100644 index 0000000..5dd2752 Binary files /dev/null and b/wallpapers/pixelart/gruvbox-pacman-full.png differ diff --git a/wallpapers/pixelart/gruvbox-pacman-ghosts.png b/wallpapers/pixelart/gruvbox-pacman-ghosts.png new file mode 100644 index 0000000..3a4da3f Binary files /dev/null and b/wallpapers/pixelart/gruvbox-pacman-ghosts.png differ diff --git a/wallpapers/pixelart/gruvbox_image11.png b/wallpapers/pixelart/gruvbox_image11.png new file mode 100644 index 0000000..032fd10 Binary files /dev/null and b/wallpapers/pixelart/gruvbox_image11.png differ diff --git a/wallpapers/pixelart/gruvbox_image31.png b/wallpapers/pixelart/gruvbox_image31.png new file mode 100644 index 0000000..6c2700d Binary files /dev/null and b/wallpapers/pixelart/gruvbox_image31.png differ diff --git a/wallpapers/pixelart/gruvbox_image40.png b/wallpapers/pixelart/gruvbox_image40.png new file mode 100644 index 0000000..ff2cbfe Binary files /dev/null and b/wallpapers/pixelart/gruvbox_image40.png differ diff --git a/wallpapers/pixelart/gruvbox_image44.png b/wallpapers/pixelart/gruvbox_image44.png new file mode 100644 index 0000000..63b6b73 Binary files /dev/null and b/wallpapers/pixelart/gruvbox_image44.png differ diff --git a/wallpapers/pixelart/gruvbox_image46.png b/wallpapers/pixelart/gruvbox_image46.png new file mode 100644 index 0000000..53080a0 Binary files /dev/null and b/wallpapers/pixelart/gruvbox_image46.png differ diff --git a/wallpapers/pixelart/gruvbox_image55.png b/wallpapers/pixelart/gruvbox_image55.png new file mode 100644 index 0000000..1dd92fd Binary files /dev/null and b/wallpapers/pixelart/gruvbox_image55.png differ diff --git a/wallpapers/pixelart/house-garden.jpg b/wallpapers/pixelart/house-garden.jpg new file mode 100644 index 0000000..916fc90 Binary files /dev/null and b/wallpapers/pixelart/house-garden.jpg differ diff --git a/wallpapers/pixelart/image16.png b/wallpapers/pixelart/image16.png new file mode 100644 index 0000000..6c53400 Binary files /dev/null and b/wallpapers/pixelart/image16.png differ diff --git a/wallpapers/pixelart/image21.png b/wallpapers/pixelart/image21.png new file mode 100644 index 0000000..55286bb Binary files /dev/null and b/wallpapers/pixelart/image21.png differ diff --git a/wallpapers/pixelart/secluded-grove-pixel.png b/wallpapers/pixelart/secluded-grove-pixel.png new file mode 100644 index 0000000..65258b2 Binary files /dev/null and b/wallpapers/pixelart/secluded-grove-pixel.png differ diff --git a/wallpapers/pixelart/wall_secondary.png b/wallpapers/pixelart/wall_secondary.png new file mode 100644 index 0000000..d544ec9 Binary files /dev/null and b/wallpapers/pixelart/wall_secondary.png differ diff --git a/wallpapers/pixelart/wallpaper.png b/wallpapers/pixelart/wallpaper.png new file mode 100644 index 0000000..220a31a Binary files /dev/null and b/wallpapers/pixelart/wallpaper.png differ