diff --git a/README.md b/README.md index 2fd86f6..e373f8b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # Sway-Wallpaper - Random wallpapers with neofetch, for sway +Random wallpapers with neofetch, for sway + +Icons are from https://github.com/dharmx/walls + +This is meant to be for my sway configuration \ No newline at end of file diff --git a/UbuntuMonoNerdFontMono-Regular.ttf b/UbuntuMonoNerdFontMono-Regular.ttf new file mode 100644 index 0000000..8396c0e Binary files /dev/null and b/UbuntuMonoNerdFontMono-Regular.ttf differ diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..1275a46 Binary files /dev/null and b/icon.png differ diff --git a/neofetch.py b/neofetch.py new file mode 100644 index 0000000..88d6450 --- /dev/null +++ b/neofetch.py @@ -0,0 +1,111 @@ +import subprocess +import datetime +import os +import random + +from PIL import Image +from PIL import ImageFilter +from PIL import ImageFont +from PIL import ImageDraw +import PIL.ImageOps + +try: + os.ulink("/tmp/wallpaper.png") +except: + x = None # Do nothing + +#file = open("/home/astatin3/.config/sway/icon.txt","r") +#lines = file.readlines() +#file.close() + +output = (subprocess.run(['neofetch', '--stdout'], capture_output=True, text=True).stdout).split("\n") + +screenX = 0 +screenY = 0 + +def getSubfolders(path): + try: + return os.listdir(path) + except: + return None + +def getRandWallpaper(): + wallpapers = getSubfolders("/home/astatin3/.config/sway/wallpapers/") + return "/home/astatin3/.config/sway/wallpapers/" + random.choice(wallpapers) + +for i in range(0, len(output)-2, 1): + #lines[i] = lines[i][:-1] + output[i] + + #print(lines[i]) + + if i == 0: + output[0] += f"at ({datetime.datetime.now().strftime('%m-%d %H:%M:%S')})" + + if i == 8: + res = output[i].split(" ")[1].split("x") + screenX = int(res[0]) + screenY = int(res[1]) + +#neofetch = "\n".join(lines) + +icon = Image.open("/home/astatin3/.config/sway/icon.png").convert("RGBA") + +iconsizeX, iconsizeY = icon.size + +neofetch = "\n".join(output) + +textSize = 0.01 + +iconscale = 0.0005 + +textoffsetX = 0.0 #Percentages +textoffsetY = -0.16 + +iconoffsetX = -0.145 +iconoffsetY = -0.16 + +color = (199,0,57) +# color = (255, 255, 255) + +# img = Image.new('RGB', (screenX, screenY), (31, 26, 32)) +img = Image.open(getRandWallpaper()).resize((screenX, screenY)).convert("RGB") + +solidColorImage = Image.new('RGBA', (screenX, screenY),color) +blackImage = Image.new('RGBA', (screenX, screenY),(0,0,0,255)) +invertImg = PIL.ImageOps.invert(img).convert('LA').filter(ImageFilter.BoxBlur(2)) +# invertImg = invertImg.filter(ImageFilter.FIND_EDGES) + +mask = Image.new('RGBA', (screenX, screenY),(0, 0, 0, 0)) +draw = ImageDraw.Draw(mask) +font = ImageFont.truetype("/home/astatin3/.config/sway/UbuntuMonoNerdFontMono-Regular.ttf", textSize*screenX) + +draw.text((textoffsetX*screenX+screenX/2, textoffsetY*screenY+screenY/2),neofetch,color,font=font) + +icon = icon.resize((round(iconscale*iconsizeX*screenY), round(iconscale*iconsizeY*screenY)), Image.Resampling.LANCZOS) +mask.paste(icon, (round(iconoffsetX*screenX+screenX/2), round(iconoffsetY*screenY+screenY/2)), icon) + +# Outline +mask2 = Image.new('RGBA', (screenX, screenY),(0, 0, 0, 0)) + +d = 1 + +mask2.paste(mask, (d, d), mask) +mask2.paste(mask, (d, -d), mask) +mask2.paste(mask, (-d, d), mask) +mask2.paste(mask, (-d, -d), mask) + +mask2.paste(mask, (d, 0), mask) +mask2.paste(mask, (-d, 0), mask) +mask2.paste(mask, (0, d), mask) +mask2.paste(mask, (0, -d), mask) + + + +wallpaper = Image.composite(invertImg, img, mask2) +wallpaper = Image.composite(img, wallpaper, mask) +wallpaper.save("/tmp/wallpaper.png") + +# img.save("/tmp/wallpaper.png") +#img.show() + +subprocess.run(["swaybg", "-m", "fill", "-i", "/tmp/wallpaper.png"]) diff --git a/wallpapers/a.jpg b/wallpapers/a.jpg new file mode 100644 index 0000000..8d88e26 Binary files /dev/null and b/wallpapers/a.jpg differ diff --git a/wallpapers/a_aerial_view_of_a_mountain.jpg b/wallpapers/a_aerial_view_of_a_mountain.jpg new file mode 100644 index 0000000..4baf1ff Binary files /dev/null and b/wallpapers/a_aerial_view_of_a_mountain.jpg differ diff --git a/wallpapers/a_astronaut_walking_through_a_doorway.jpg b/wallpapers/a_astronaut_walking_through_a_doorway.jpg new file mode 100644 index 0000000..692224a Binary files /dev/null and b/wallpapers/a_astronaut_walking_through_a_doorway.jpg differ diff --git a/wallpapers/a_beach_with_waves_and_cliffs.jpg b/wallpapers/a_beach_with_waves_and_cliffs.jpg new file mode 100644 index 0000000..0e1fbac Binary files /dev/null and b/wallpapers/a_beach_with_waves_and_cliffs.jpg differ diff --git a/wallpapers/a_beach_with_waves_and_rocks.jpg b/wallpapers/a_beach_with_waves_and_rocks.jpg new file mode 100644 index 0000000..ba43fd1 Binary files /dev/null and b/wallpapers/a_beach_with_waves_and_rocks.jpg differ diff --git a/wallpapers/a_black_and_white_image_of_a_line_of_astronaut's.jpg b/wallpapers/a_black_and_white_image_of_a_line_of_astronaut's.jpg new file mode 100644 index 0000000..88c14d1 Binary files /dev/null and b/wallpapers/a_black_and_white_image_of_a_line_of_astronaut's.jpg differ diff --git a/wallpapers/a_black_and_white_image_of_a_monster.png b/wallpapers/a_black_and_white_image_of_a_monster.png new file mode 100644 index 0000000..f6d166b Binary files /dev/null and b/wallpapers/a_black_and_white_image_of_a_monster.png differ diff --git a/wallpapers/a_black_and_white_image_of_a_person_falling_down.jpg b/wallpapers/a_black_and_white_image_of_a_person_falling_down.jpg new file mode 100644 index 0000000..1cd9821 Binary files /dev/null and b/wallpapers/a_black_and_white_image_of_a_person_falling_down.jpg differ diff --git a/wallpapers/a_black_and_white_logo.jpg b/wallpapers/a_black_and_white_logo.jpg new file mode 100644 index 0000000..c7296db Binary files /dev/null and b/wallpapers/a_black_and_white_logo.jpg differ diff --git a/wallpapers/a_black_and_white_logo.png b/wallpapers/a_black_and_white_logo.png new file mode 100644 index 0000000..b864112 Binary files /dev/null and b/wallpapers/a_black_and_white_logo.png differ diff --git a/wallpapers/a_black_and_white_maze.png b/wallpapers/a_black_and_white_maze.png new file mode 100644 index 0000000..21a4101 Binary files /dev/null and b/wallpapers/a_black_and_white_maze.png differ diff --git a/wallpapers/a_black_and_white_photo_of_a_city.png b/wallpapers/a_black_and_white_photo_of_a_city.png new file mode 100644 index 0000000..0d8b248 Binary files /dev/null and b/wallpapers/a_black_and_white_photo_of_a_city.png differ diff --git a/wallpapers/a_black_and_white_swirly_pattern.jpg b/wallpapers/a_black_and_white_swirly_pattern.jpg new file mode 100644 index 0000000..3837792 Binary files /dev/null and b/wallpapers/a_black_and_white_swirly_pattern.jpg differ diff --git a/wallpapers/a_black_background_with_green_and_blue_squares.jpg b/wallpapers/a_black_background_with_green_and_blue_squares.jpg new file mode 100644 index 0000000..398fc58 Binary files /dev/null and b/wallpapers/a_black_background_with_green_and_blue_squares.jpg differ diff --git a/wallpapers/a_black_background_with_purple_and_blue_spots.png b/wallpapers/a_black_background_with_purple_and_blue_spots.png new file mode 100644 index 0000000..55c8dcd Binary files /dev/null and b/wallpapers/a_black_background_with_purple_and_blue_spots.png differ diff --git a/wallpapers/a_black_background_with_white_dots.png b/wallpapers/a_black_background_with_white_dots.png new file mode 100644 index 0000000..2591d8f Binary files /dev/null and b/wallpapers/a_black_background_with_white_dots.png differ diff --git a/wallpapers/a_black_background_with_white_dots_and_circles.png b/wallpapers/a_black_background_with_white_dots_and_circles.png new file mode 100644 index 0000000..ce81e23 Binary files /dev/null and b/wallpapers/a_black_background_with_white_dots_and_circles.png differ diff --git a/wallpapers/a_black_background_with_white_text.jpg b/wallpapers/a_black_background_with_white_text.jpg new file mode 100644 index 0000000..257bbce Binary files /dev/null and b/wallpapers/a_black_background_with_white_text.jpg differ diff --git a/wallpapers/a_black_bird_with_a_sword.jpg b/wallpapers/a_black_bird_with_a_sword.jpg new file mode 100644 index 0000000..97691e5 Binary files /dev/null and b/wallpapers/a_black_bird_with_a_sword.jpg differ diff --git a/wallpapers/a_blue_and_grey_background.png b/wallpapers/a_blue_and_grey_background.png new file mode 100644 index 0000000..cac5ca1 Binary files /dev/null and b/wallpapers/a_blue_and_grey_background.png differ diff --git a/wallpapers/a_blue_and_pink_swirls_on_a_black_background.png b/wallpapers/a_blue_and_pink_swirls_on_a_black_background.png new file mode 100644 index 0000000..fcdb5a4 Binary files /dev/null and b/wallpapers/a_blue_and_pink_swirls_on_a_black_background.png differ diff --git a/wallpapers/a_blue_and_white_dots.png b/wallpapers/a_blue_and_white_dots.png new file mode 100644 index 0000000..e45b572 Binary files /dev/null and b/wallpapers/a_blue_and_white_dots.png differ diff --git a/wallpapers/a_blue_and_white_image_of_a_mountain.png b/wallpapers/a_blue_and_white_image_of_a_mountain.png new file mode 100644 index 0000000..5ea6103 Binary files /dev/null and b/wallpapers/a_blue_and_white_image_of_a_mountain.png differ diff --git a/wallpapers/a_blue_circle_with_a_wave_in_the_middle.png b/wallpapers/a_blue_circle_with_a_wave_in_the_middle.png new file mode 100644 index 0000000..2b315fb Binary files /dev/null and b/wallpapers/a_blue_circle_with_a_wave_in_the_middle.png differ diff --git a/wallpapers/a_blue_rectangular_object_with_a_black_background.jpg b/wallpapers/a_blue_rectangular_object_with_a_black_background.jpg new file mode 100644 index 0000000..bf567ad Binary files /dev/null and b/wallpapers/a_blue_rectangular_object_with_a_black_background.jpg differ diff --git a/wallpapers/a_blue_swirly_spiral_on_a_dark_background.png b/wallpapers/a_blue_swirly_spiral_on_a_dark_background.png new file mode 100644 index 0000000..9549f9e Binary files /dev/null and b/wallpapers/a_blue_swirly_spiral_on_a_dark_background.png differ diff --git a/wallpapers/a_blueprint_of_a_cassette_tape.png b/wallpapers/a_blueprint_of_a_cassette_tape.png new file mode 100644 index 0000000..1872a49 Binary files /dev/null and b/wallpapers/a_blueprint_of_a_cassette_tape.png differ diff --git a/wallpapers/a_boat_in_the_water.jpg b/wallpapers/a_boat_in_the_water.jpg new file mode 100644 index 0000000..8bec443 Binary files /dev/null and b/wallpapers/a_boat_in_the_water.jpg differ diff --git a/wallpapers/a_body_of_water_with_a_lit_up_tower_in_the_middle.png b/wallpapers/a_body_of_water_with_a_lit_up_tower_in_the_middle.png new file mode 100644 index 0000000..f4ee67a Binary files /dev/null and b/wallpapers/a_body_of_water_with_a_lit_up_tower_in_the_middle.png differ diff --git a/wallpapers/a_bridge_with_a_view_of_a_city.jpg b/wallpapers/a_bridge_with_a_view_of_a_city.jpg new file mode 100644 index 0000000..5ff35f0 Binary files /dev/null and b/wallpapers/a_bridge_with_a_view_of_a_city.jpg differ diff --git a/wallpapers/a_car_driving_on_a_road_at_night.png b/wallpapers/a_car_driving_on_a_road_at_night.png new file mode 100644 index 0000000..2d79621 Binary files /dev/null and b/wallpapers/a_car_driving_on_a_road_at_night.png differ diff --git a/wallpapers/a_car_on_a_road_with_fog.jpg b/wallpapers/a_car_on_a_road_with_fog.jpg new file mode 100644 index 0000000..1274855 Binary files /dev/null and b/wallpapers/a_car_on_a_road_with_fog.jpg differ diff --git a/wallpapers/a_cartoon_of_a_couple_of_tentacles.png b/wallpapers/a_cartoon_of_a_couple_of_tentacles.png new file mode 100644 index 0000000..fb44340 Binary files /dev/null and b/wallpapers/a_cartoon_of_a_couple_of_tentacles.png differ diff --git a/wallpapers/a_cartoon_of_a_room_with_people_and_a_black_background.png b/wallpapers/a_cartoon_of_a_room_with_people_and_a_black_background.png new file mode 100644 index 0000000..b676990 Binary files /dev/null and b/wallpapers/a_cartoon_of_a_room_with_people_and_a_black_background.png differ diff --git a/wallpapers/a_cartoon_of_jellyfish_and_coral_reef.png b/wallpapers/a_cartoon_of_jellyfish_and_coral_reef.png new file mode 100644 index 0000000..8f68e7e Binary files /dev/null and b/wallpapers/a_cartoon_of_jellyfish_and_coral_reef.png differ diff --git a/wallpapers/a_cat_looking_at_the_camera.png b/wallpapers/a_cat_looking_at_the_camera.png new file mode 100644 index 0000000..252bcb7 Binary files /dev/null and b/wallpapers/a_cat_looking_at_the_camera.png differ diff --git a/wallpapers/a_cat_looking_through_a_metal_helmet.png b/wallpapers/a_cat_looking_through_a_metal_helmet.png new file mode 100644 index 0000000..c38583c Binary files /dev/null and b/wallpapers/a_cat_looking_through_a_metal_helmet.png differ diff --git a/wallpapers/a_cat_walking_on_a_hill.png b/wallpapers/a_cat_walking_on_a_hill.png new file mode 100644 index 0000000..bd77f09 Binary files /dev/null and b/wallpapers/a_cat_walking_on_a_hill.png differ diff --git a/wallpapers/a_cave_in_a_rocky_area.jpg b/wallpapers/a_cave_in_a_rocky_area.jpg new file mode 100644 index 0000000..b054dc3 Binary files /dev/null and b/wallpapers/a_cave_in_a_rocky_area.jpg differ diff --git a/wallpapers/a_circular_pattern_of_stained_glass_with_Thanks-Giving_Square_in_the_background.jpg b/wallpapers/a_circular_pattern_of_stained_glass_with_Thanks-Giving_Square_in_the_background.jpg new file mode 100644 index 0000000..e63e6c3 Binary files /dev/null and b/wallpapers/a_circular_pattern_of_stained_glass_with_Thanks-Giving_Square_in_the_background.jpg differ diff --git a/wallpapers/a_city_skyline_with_a_sunset_in_the_background.png b/wallpapers/a_city_skyline_with_a_sunset_in_the_background.png new file mode 100644 index 0000000..09b4739 Binary files /dev/null and b/wallpapers/a_city_skyline_with_a_sunset_in_the_background.png differ diff --git a/wallpapers/a_city_skyline_with_a_tall_building_and_a_red_sky.png b/wallpapers/a_city_skyline_with_a_tall_building_and_a_red_sky.png new file mode 100644 index 0000000..4f09884 Binary files /dev/null and b/wallpapers/a_city_skyline_with_a_tall_building_and_a_red_sky.png differ diff --git a/wallpapers/a_city_skyline_with_many_buildings.png b/wallpapers/a_city_skyline_with_many_buildings.png new file mode 100644 index 0000000..38e1540 Binary files /dev/null and b/wallpapers/a_city_skyline_with_many_buildings.png differ diff --git a/wallpapers/a_city_skyline_with_many_tall_buildings_01.png b/wallpapers/a_city_skyline_with_many_tall_buildings_01.png new file mode 100644 index 0000000..04e6f0e Binary files /dev/null and b/wallpapers/a_city_skyline_with_many_tall_buildings_01.png differ diff --git a/wallpapers/a_city_skyline_with_water_reflection.png b/wallpapers/a_city_skyline_with_water_reflection.png new file mode 100644 index 0000000..823e15d Binary files /dev/null and b/wallpapers/a_city_skyline_with_water_reflection.png differ diff --git a/wallpapers/a_city_street_with_buildings_and_windows.jpg b/wallpapers/a_city_street_with_buildings_and_windows.jpg new file mode 100644 index 0000000..3a62ad9 Binary files /dev/null and b/wallpapers/a_city_street_with_buildings_and_windows.jpg differ diff --git a/wallpapers/a_city_with_lights_in_the_distance.jpg b/wallpapers/a_city_with_lights_in_the_distance.jpg new file mode 100644 index 0000000..feb80b8 Binary files /dev/null and b/wallpapers/a_city_with_lights_in_the_distance.jpg differ diff --git a/wallpapers/a_city_with_tall_buildings_in_the_fog.png b/wallpapers/a_city_with_tall_buildings_in_the_fog.png new file mode 100644 index 0000000..de5f5f8 Binary files /dev/null and b/wallpapers/a_city_with_tall_buildings_in_the_fog.png differ diff --git a/wallpapers/a_city_with_tall_buildings_in_the_fog_01.png b/wallpapers/a_city_with_tall_buildings_in_the_fog_01.png new file mode 100644 index 0000000..7514ba3 Binary files /dev/null and b/wallpapers/a_city_with_tall_buildings_in_the_fog_01.png differ diff --git a/wallpapers/a_cliff_with_fog_and_grass.jpg b/wallpapers/a_cliff_with_fog_and_grass.jpg new file mode 100644 index 0000000..2ffb59b Binary files /dev/null and b/wallpapers/a_cliff_with_fog_and_grass.jpg differ diff --git a/wallpapers/a_close_up_of_a_flower.png b/wallpapers/a_close_up_of_a_flower.png new file mode 100644 index 0000000..54d7046 Binary files /dev/null and b/wallpapers/a_close_up_of_a_flower.png differ diff --git a/wallpapers/a_close_up_of_a_moon.png b/wallpapers/a_close_up_of_a_moon.png new file mode 100644 index 0000000..aeabaf3 Binary files /dev/null and b/wallpapers/a_close_up_of_a_moon.png differ diff --git a/wallpapers/a_close_up_of_a_plant.jpg b/wallpapers/a_close_up_of_a_plant.jpg new file mode 100644 index 0000000..91a2351 Binary files /dev/null and b/wallpapers/a_close_up_of_a_plant.jpg differ diff --git a/wallpapers/a_close_up_of_a_plant.png b/wallpapers/a_close_up_of_a_plant.png new file mode 100644 index 0000000..dff5c4b Binary files /dev/null and b/wallpapers/a_close_up_of_a_plant.png differ diff --git a/wallpapers/a_close_up_of_a_robot.jpg b/wallpapers/a_close_up_of_a_robot.jpg new file mode 100644 index 0000000..9a3ecdd Binary files /dev/null and b/wallpapers/a_close_up_of_a_robot.jpg differ diff --git a/wallpapers/a_close_up_of_a_rock.jpg b/wallpapers/a_close_up_of_a_rock.jpg new file mode 100644 index 0000000..f1fa3e1 Binary files /dev/null and b/wallpapers/a_close_up_of_a_rock.jpg differ diff --git a/wallpapers/a_close_up_of_a_rose.png b/wallpapers/a_close_up_of_a_rose.png new file mode 100644 index 0000000..665805a Binary files /dev/null and b/wallpapers/a_close_up_of_a_rose.png differ diff --git a/wallpapers/a_close_up_of_a_wallpaper.png b/wallpapers/a_close_up_of_a_wallpaper.png new file mode 100644 index 0000000..7669c4f Binary files /dev/null and b/wallpapers/a_close_up_of_a_wallpaper.png differ diff --git a/wallpapers/a_close_up_of_leaves.jpg b/wallpapers/a_close_up_of_leaves.jpg new file mode 100644 index 0000000..76a14a9 Binary files /dev/null and b/wallpapers/a_close_up_of_leaves.jpg differ diff --git a/wallpapers/a_close_up_of_water.jpg b/wallpapers/a_close_up_of_water.jpg new file mode 100644 index 0000000..0b1022d Binary files /dev/null and b/wallpapers/a_close_up_of_water.jpg differ diff --git a/wallpapers/a_close_up_of_water.png b/wallpapers/a_close_up_of_water.png new file mode 100644 index 0000000..242b67d Binary files /dev/null and b/wallpapers/a_close_up_of_water.png differ diff --git a/wallpapers/a_clouds_in_the_sky.png b/wallpapers/a_clouds_in_the_sky.png new file mode 100644 index 0000000..32a4e7c Binary files /dev/null and b/wallpapers/a_clouds_in_the_sky.png differ diff --git a/wallpapers/a_colorful_circle_with_dots.jpg b/wallpapers/a_colorful_circle_with_dots.jpg new file mode 100644 index 0000000..43d1947 Binary files /dev/null and b/wallpapers/a_colorful_circle_with_dots.jpg differ diff --git a/wallpapers/a_colorful_planets_in_a_circle.jpg b/wallpapers/a_colorful_planets_in_a_circle.jpg new file mode 100644 index 0000000..528106c Binary files /dev/null and b/wallpapers/a_colorful_planets_in_a_circle.jpg differ diff --git a/wallpapers/a_colorful_pyramid_with_text.jpg b/wallpapers/a_colorful_pyramid_with_text.jpg new file mode 100644 index 0000000..8afb785 Binary files /dev/null and b/wallpapers/a_colorful_pyramid_with_text.jpg differ diff --git a/wallpapers/a_colorful_swirls_of_paint.jpg b/wallpapers/a_colorful_swirls_of_paint.jpg new file mode 100644 index 0000000..ca4e918 Binary files /dev/null and b/wallpapers/a_colorful_swirls_of_paint.jpg differ diff --git a/wallpapers/a_donut_with_sprinkles_on_top.jpg b/wallpapers/a_donut_with_sprinkles_on_top.jpg new file mode 100644 index 0000000..b4d68dd Binary files /dev/null and b/wallpapers/a_donut_with_sprinkles_on_top.jpg differ diff --git a/wallpapers/a_drawing_of_a_city.jpg b/wallpapers/a_drawing_of_a_city.jpg new file mode 100644 index 0000000..4836860 Binary files /dev/null and b/wallpapers/a_drawing_of_a_city.jpg differ diff --git a/wallpapers/a_drawing_of_a_hourglass.png b/wallpapers/a_drawing_of_a_hourglass.png new file mode 100644 index 0000000..c26090e Binary files /dev/null and b/wallpapers/a_drawing_of_a_hourglass.png differ diff --git a/wallpapers/a_drawing_of_a_sun_and_a_ball.png b/wallpapers/a_drawing_of_a_sun_and_a_ball.png new file mode 100644 index 0000000..5746985 Binary files /dev/null and b/wallpapers/a_drawing_of_a_sun_and_a_ball.png differ diff --git a/wallpapers/a_drawing_of_an_astronaut_holding_a_rocket.jpg b/wallpapers/a_drawing_of_an_astronaut_holding_a_rocket.jpg new file mode 100644 index 0000000..87f7416 Binary files /dev/null and b/wallpapers/a_drawing_of_an_astronaut_holding_a_rocket.jpg differ diff --git a/wallpapers/a_drawing_of_an_astronaut_in_space.png b/wallpapers/a_drawing_of_an_astronaut_in_space.png new file mode 100644 index 0000000..d41d54c Binary files /dev/null and b/wallpapers/a_drawing_of_an_astronaut_in_space.png differ diff --git a/wallpapers/a_drawing_of_an_astronaut_in_space_01.png b/wallpapers/a_drawing_of_an_astronaut_in_space_01.png new file mode 100644 index 0000000..507e3a4 Binary files /dev/null and b/wallpapers/a_drawing_of_an_astronaut_in_space_01.png differ diff --git a/wallpapers/a_drawing_of_an_astronaut_in_space_suit.jpg b/wallpapers/a_drawing_of_an_astronaut_in_space_suit.jpg new file mode 100644 index 0000000..0b42c78 Binary files /dev/null and b/wallpapers/a_drawing_of_an_astronaut_in_space_suit.jpg differ diff --git a/wallpapers/a_fog_over_water_with_a_black_background.jpg b/wallpapers/a_fog_over_water_with_a_black_background.jpg new file mode 100644 index 0000000..85c7030 Binary files /dev/null and b/wallpapers/a_fog_over_water_with_a_black_background.jpg differ diff --git a/wallpapers/a_foggy_forest_in_the_mountains.jpg b/wallpapers/a_foggy_forest_in_the_mountains.jpg new file mode 100644 index 0000000..c46c3e8 Binary files /dev/null and b/wallpapers/a_foggy_forest_in_the_mountains.jpg differ diff --git a/wallpapers/a_foggy_forest_with_trees.jpg b/wallpapers/a_foggy_forest_with_trees.jpg new file mode 100644 index 0000000..14dba5d Binary files /dev/null and b/wallpapers/a_foggy_forest_with_trees.jpg differ diff --git a/wallpapers/a_foggy_forest_with_trees.png b/wallpapers/a_foggy_forest_with_trees.png new file mode 100644 index 0000000..ca4dfd5 Binary files /dev/null and b/wallpapers/a_foggy_forest_with_trees.png differ diff --git a/wallpapers/a_foggy_forest_with_trees_01.png b/wallpapers/a_foggy_forest_with_trees_01.png new file mode 100644 index 0000000..4910dee Binary files /dev/null and b/wallpapers/a_foggy_forest_with_trees_01.png differ diff --git a/wallpapers/a_foggy_forest_with_trees_05.jpg b/wallpapers/a_foggy_forest_with_trees_05.jpg new file mode 100644 index 0000000..1157f02 Binary files /dev/null and b/wallpapers/a_foggy_forest_with_trees_05.jpg differ diff --git a/wallpapers/a_foggy_forest_with_trees_and_bushes.png b/wallpapers/a_foggy_forest_with_trees_and_bushes.png new file mode 100644 index 0000000..5ec5ccf Binary files /dev/null and b/wallpapers/a_foggy_forest_with_trees_and_bushes.png differ diff --git a/wallpapers/a_foggy_landscape_with_trees_and_grass.jpg b/wallpapers/a_foggy_landscape_with_trees_and_grass.jpg new file mode 100644 index 0000000..1551a09 Binary files /dev/null and b/wallpapers/a_foggy_landscape_with_trees_and_grass.jpg differ diff --git a/wallpapers/a_foggy_mountain_with_trees.jpg b/wallpapers/a_foggy_mountain_with_trees.jpg new file mode 100644 index 0000000..19ab393 Binary files /dev/null and b/wallpapers/a_foggy_mountain_with_trees.jpg differ diff --git a/wallpapers/a_foggy_mountain_with_trees.png b/wallpapers/a_foggy_mountain_with_trees.png new file mode 100644 index 0000000..6cf9a8f Binary files /dev/null and b/wallpapers/a_foggy_mountain_with_trees.png differ diff --git a/wallpapers/a_foggy_mountain_with_trees_01.jpg b/wallpapers/a_foggy_mountain_with_trees_01.jpg new file mode 100644 index 0000000..7cb1224 Binary files /dev/null and b/wallpapers/a_foggy_mountain_with_trees_01.jpg differ diff --git a/wallpapers/a_foggy_mountain_with_trees_01.png b/wallpapers/a_foggy_mountain_with_trees_01.png new file mode 100644 index 0000000..7704dbc Binary files /dev/null and b/wallpapers/a_foggy_mountain_with_trees_01.png differ diff --git a/wallpapers/a_foggy_mountain_with_trees_02.jpg b/wallpapers/a_foggy_mountain_with_trees_02.jpg new file mode 100644 index 0000000..9503769 Binary files /dev/null and b/wallpapers/a_foggy_mountain_with_trees_02.jpg differ diff --git a/wallpapers/a_graphic_of_a_monster.jpg b/wallpapers/a_graphic_of_a_monster.jpg new file mode 100644 index 0000000..9652854 Binary files /dev/null and b/wallpapers/a_graphic_of_a_monster.jpg differ diff --git a/wallpapers/a_green_mountains_with_pink_and_blue_sky.jpg b/wallpapers/a_green_mountains_with_pink_and_blue_sky.jpg new file mode 100644 index 0000000..3f2ef2d Binary files /dev/null and b/wallpapers/a_green_mountains_with_pink_and_blue_sky.jpg differ diff --git a/wallpapers/a_group_of_bubbles_on_a_white_background.jpg b/wallpapers/a_group_of_bubbles_on_a_white_background.jpg new file mode 100644 index 0000000..08ca5bb Binary files /dev/null and b/wallpapers/a_group_of_bubbles_on_a_white_background.jpg differ diff --git a/wallpapers/a_group_of_colorful_ghosts.png b/wallpapers/a_group_of_colorful_ghosts.png new file mode 100644 index 0000000..9da3110 Binary files /dev/null and b/wallpapers/a_group_of_colorful_ghosts.png differ diff --git a/wallpapers/a_group_of_colorful_hearts.png b/wallpapers/a_group_of_colorful_hearts.png new file mode 100644 index 0000000..bf2e135 Binary files /dev/null and b/wallpapers/a_group_of_colorful_hearts.png differ diff --git a/wallpapers/a_group_of_flowers_on_a_black_background.png b/wallpapers/a_group_of_flowers_on_a_black_background.png new file mode 100644 index 0000000..d2b58d7 Binary files /dev/null and b/wallpapers/a_group_of_flowers_on_a_black_background.png differ diff --git a/wallpapers/a_group_of_geometric_shapes.png b/wallpapers/a_group_of_geometric_shapes.png new file mode 100644 index 0000000..abe5ff8 Binary files /dev/null and b/wallpapers/a_group_of_geometric_shapes.png differ diff --git a/wallpapers/a_group_of_images_of_rabbits.png b/wallpapers/a_group_of_images_of_rabbits.png new file mode 100644 index 0000000..3709608 Binary files /dev/null and b/wallpapers/a_group_of_images_of_rabbits.png differ diff --git a/wallpapers/a_group_of_jellyfish_under_water.jpg b/wallpapers/a_group_of_jellyfish_under_water.jpg new file mode 100644 index 0000000..0747466 Binary files /dev/null and b/wallpapers/a_group_of_jellyfish_under_water.jpg differ diff --git a/wallpapers/a_group_of_old_computer_equipment.png b/wallpapers/a_group_of_old_computer_equipment.png new file mode 100644 index 0000000..2b36c51 Binary files /dev/null and b/wallpapers/a_group_of_old_computer_equipment.png differ diff --git a/wallpapers/a_group_of_people_on_a_street.png b/wallpapers/a_group_of_people_on_a_street.png new file mode 100644 index 0000000..9cc2884 Binary files /dev/null and b/wallpapers/a_group_of_people_on_a_street.png differ diff --git a/wallpapers/a_group_of_people_standing_at_a_bar.png b/wallpapers/a_group_of_people_standing_at_a_bar.png new file mode 100644 index 0000000..412eb52 Binary files /dev/null and b/wallpapers/a_group_of_people_standing_at_a_bar.png differ diff --git a/wallpapers/a_group_of_people_walking_on_a_hill.png b/wallpapers/a_group_of_people_walking_on_a_hill.png new file mode 100644 index 0000000..b52cc9e Binary files /dev/null and b/wallpapers/a_group_of_people_walking_on_a_hill.png differ diff --git a/wallpapers/a_group_of_planets_in_different_colors.png b/wallpapers/a_group_of_planets_in_different_colors.png new file mode 100644 index 0000000..51dd943 Binary files /dev/null and b/wallpapers/a_group_of_planets_in_different_colors.png differ diff --git a/wallpapers/a_group_of_space_ships_in_the_sky.png b/wallpapers/a_group_of_space_ships_in_the_sky.png new file mode 100644 index 0000000..dab3333 Binary files /dev/null and b/wallpapers/a_group_of_space_ships_in_the_sky.png differ diff --git a/wallpapers/a_group_of_symbols_on_a_black_background.jpg b/wallpapers/a_group_of_symbols_on_a_black_background.jpg new file mode 100644 index 0000000..c8cf94a Binary files /dev/null and b/wallpapers/a_group_of_symbols_on_a_black_background.jpg differ diff --git a/wallpapers/a_group_of_tall_buildings_with_clouds_in_the_sky.png b/wallpapers/a_group_of_tall_buildings_with_clouds_in_the_sky.png new file mode 100644 index 0000000..8ae2eb7 Binary files /dev/null and b/wallpapers/a_group_of_tall_buildings_with_clouds_in_the_sky.png differ diff --git a/wallpapers/a_group_of_tall_buildings_with_fog.png b/wallpapers/a_group_of_tall_buildings_with_fog.png new file mode 100644 index 0000000..bdf2b09 Binary files /dev/null and b/wallpapers/a_group_of_tall_buildings_with_fog.png differ diff --git a/wallpapers/a_group_of_tall_pillars_in_a_desert.jpg b/wallpapers/a_group_of_tall_pillars_in_a_desert.jpg new file mode 100644 index 0000000..c602105 Binary files /dev/null and b/wallpapers/a_group_of_tall_pillars_in_a_desert.jpg differ diff --git a/wallpapers/a_group_of_trees_in_the_fog.jpg b/wallpapers/a_group_of_trees_in_the_fog.jpg new file mode 100644 index 0000000..4697a18 Binary files /dev/null and b/wallpapers/a_group_of_trees_in_the_fog.jpg differ diff --git a/wallpapers/a_group_of_white_lines_on_a_black_background.jpeg b/wallpapers/a_group_of_white_lines_on_a_black_background.jpeg new file mode 100644 index 0000000..ff663e4 Binary files /dev/null and b/wallpapers/a_group_of_white_lines_on_a_black_background.jpeg differ diff --git a/wallpapers/a_group_of_white_symbols.jpg b/wallpapers/a_group_of_white_symbols.jpg new file mode 100644 index 0000000..12a050a Binary files /dev/null and b/wallpapers/a_group_of_white_symbols.jpg differ diff --git a/wallpapers/a_hand_reaching_out_to_the_sky.jpg b/wallpapers/a_hand_reaching_out_to_the_sky.jpg new file mode 100644 index 0000000..79633b7 Binary files /dev/null and b/wallpapers/a_hand_reaching_out_to_the_sky.jpg differ diff --git a/wallpapers/a_house_with_a_chair_and_a_bicycle.jpg b/wallpapers/a_house_with_a_chair_and_a_bicycle.jpg new file mode 100644 index 0000000..70de866 Binary files /dev/null and b/wallpapers/a_house_with_a_chair_and_a_bicycle.jpg differ diff --git a/wallpapers/a_house_with_snow_on_the_roof.jpg b/wallpapers/a_house_with_snow_on_the_roof.jpg new file mode 100644 index 0000000..857c81a Binary files /dev/null and b/wallpapers/a_house_with_snow_on_the_roof.jpg differ diff --git a/wallpapers/a_keyhole_shaped_like_a_keyhole_with_numbers.png b/wallpapers/a_keyhole_shaped_like_a_keyhole_with_numbers.png new file mode 100644 index 0000000..bcc08b7 Binary files /dev/null and b/wallpapers/a_keyhole_shaped_like_a_keyhole_with_numbers.png differ diff --git a/wallpapers/a_lake_with_mountains_and_trees.jpg b/wallpapers/a_lake_with_mountains_and_trees.jpg new file mode 100644 index 0000000..4231255 Binary files /dev/null and b/wallpapers/a_lake_with_mountains_and_trees.jpg differ diff --git a/wallpapers/a_landscape_of_mountains_and_blue_sky.png b/wallpapers/a_landscape_of_mountains_and_blue_sky.png new file mode 100644 index 0000000..b1ca9af Binary files /dev/null and b/wallpapers/a_landscape_of_mountains_and_blue_sky.png differ diff --git a/wallpapers/a_landscape_of_mountains_and_snow.png b/wallpapers/a_landscape_of_mountains_and_snow.png new file mode 100644 index 0000000..9f558e6 Binary files /dev/null and b/wallpapers/a_landscape_of_mountains_and_snow.png differ diff --git a/wallpapers/a_large_mountain_with_a_body_of_water.jpg b/wallpapers/a_large_mountain_with_a_body_of_water.jpg new file mode 100644 index 0000000..ea9a786 Binary files /dev/null and b/wallpapers/a_large_mountain_with_a_body_of_water.jpg differ diff --git a/wallpapers/a_large_red_barrels_with_numbers_and_pipes.jpg b/wallpapers/a_large_red_barrels_with_numbers_and_pipes.jpg new file mode 100644 index 0000000..5088421 Binary files /dev/null and b/wallpapers/a_large_red_barrels_with_numbers_and_pipes.jpg differ diff --git a/wallpapers/a_large_rock_in_the_middle_of_a_body_of_water.png b/wallpapers/a_large_rock_in_the_middle_of_a_body_of_water.png new file mode 100644 index 0000000..e37ae49 Binary files /dev/null and b/wallpapers/a_large_rock_in_the_middle_of_a_body_of_water.png differ diff --git a/wallpapers/a_large_waterfall_with_snow_and_ice.jpg b/wallpapers/a_large_waterfall_with_snow_and_ice.jpg new file mode 100644 index 0000000..2cc2731 Binary files /dev/null and b/wallpapers/a_large_waterfall_with_snow_and_ice.jpg differ diff --git a/wallpapers/a_lightning_in_the_sky.jpg b/wallpapers/a_lightning_in_the_sky.jpg new file mode 100644 index 0000000..9059efd Binary files /dev/null and b/wallpapers/a_lightning_in_the_sky.jpg differ diff --git a/wallpapers/a_logo_with_eyes_and_arrow.jpg b/wallpapers/a_logo_with_eyes_and_arrow.jpg new file mode 100644 index 0000000..f2f1b00 Binary files /dev/null and b/wallpapers/a_logo_with_eyes_and_arrow.jpg differ diff --git a/wallpapers/a_logo_with_lines_and_rays.jpg b/wallpapers/a_logo_with_lines_and_rays.jpg new file mode 100644 index 0000000..5baa5cb Binary files /dev/null and b/wallpapers/a_logo_with_lines_and_rays.jpg differ diff --git a/wallpapers/a_man_and_woman_in_a_forest.jpg b/wallpapers/a_man_and_woman_in_a_forest.jpg new file mode 100644 index 0000000..b2e5ff0 Binary files /dev/null and b/wallpapers/a_man_and_woman_in_a_forest.jpg differ diff --git a/wallpapers/a_man_standing_in_a_room_with_many_machines.jpg b/wallpapers/a_man_standing_in_a_room_with_many_machines.jpg new file mode 100644 index 0000000..80f0f1e Binary files /dev/null and b/wallpapers/a_man_standing_in_a_room_with_many_machines.jpg differ diff --git a/wallpapers/a_map_of_a_city.png b/wallpapers/a_map_of_a_city.png new file mode 100644 index 0000000..5183e70 Binary files /dev/null and b/wallpapers/a_map_of_a_city.png differ diff --git a/wallpapers/a_map_of_the_world.png b/wallpapers/a_map_of_the_world.png new file mode 100644 index 0000000..0df5464 Binary files /dev/null and b/wallpapers/a_map_of_the_world.png differ diff --git a/wallpapers/a_moon_in_the_sky.png b/wallpapers/a_moon_in_the_sky.png new file mode 100644 index 0000000..b706936 Binary files /dev/null and b/wallpapers/a_moon_in_the_sky.png differ diff --git a/wallpapers/a_moon_over_a_spaceship.png b/wallpapers/a_moon_over_a_spaceship.png new file mode 100644 index 0000000..9310bfb Binary files /dev/null and b/wallpapers/a_moon_over_a_spaceship.png differ diff --git a/wallpapers/a_moon_over_mountains_and_clouds.png b/wallpapers/a_moon_over_mountains_and_clouds.png new file mode 100644 index 0000000..30358a1 Binary files /dev/null and b/wallpapers/a_moon_over_mountains_and_clouds.png differ diff --git a/wallpapers/a_mountain_landscape_with_trees_and_a_building_on_top.png b/wallpapers/a_mountain_landscape_with_trees_and_a_building_on_top.png new file mode 100644 index 0000000..5af9ada Binary files /dev/null and b/wallpapers/a_mountain_landscape_with_trees_and_a_building_on_top.png differ diff --git a/wallpapers/a_mountain_range_at_night.png b/wallpapers/a_mountain_range_at_night.png new file mode 100644 index 0000000..c8c0b02 Binary files /dev/null and b/wallpapers/a_mountain_range_at_night.png differ diff --git a/wallpapers/a_mountain_range_with_snow_on_top.jpg b/wallpapers/a_mountain_range_with_snow_on_top.jpg new file mode 100644 index 0000000..1f0f639 Binary files /dev/null and b/wallpapers/a_mountain_range_with_snow_on_top.jpg differ diff --git a/wallpapers/a_mountain_with_a_lake_in_the_background.jpg b/wallpapers/a_mountain_with_a_lake_in_the_background.jpg new file mode 100644 index 0000000..db377dc Binary files /dev/null and b/wallpapers/a_mountain_with_a_lake_in_the_background.jpg differ diff --git a/wallpapers/a_mountain_with_snow_on_it.jpg b/wallpapers/a_mountain_with_snow_on_it.jpg new file mode 100644 index 0000000..e26db8e Binary files /dev/null and b/wallpapers/a_mountain_with_snow_on_it.jpg differ diff --git a/wallpapers/a_mountain_with_trees_and_moon.jpg b/wallpapers/a_mountain_with_trees_and_moon.jpg new file mode 100644 index 0000000..f1c89ab Binary files /dev/null and b/wallpapers/a_mountain_with_trees_and_moon.jpg differ diff --git a/wallpapers/a_music_stand_with_a_book_on_it.jpg b/wallpapers/a_music_stand_with_a_book_on_it.jpg new file mode 100644 index 0000000..11e2ece Binary files /dev/null and b/wallpapers/a_music_stand_with_a_book_on_it.jpg differ diff --git a/wallpapers/a_painting_of_a_building_in_a_dark_landscape.png b/wallpapers/a_painting_of_a_building_in_a_dark_landscape.png new file mode 100644 index 0000000..4d8875b Binary files /dev/null and b/wallpapers/a_painting_of_a_building_in_a_dark_landscape.png differ diff --git a/wallpapers/a_painting_of_a_building_with_smoke_coming_out_of_it.png b/wallpapers/a_painting_of_a_building_with_smoke_coming_out_of_it.png new file mode 100644 index 0000000..84440b2 Binary files /dev/null and b/wallpapers/a_painting_of_a_building_with_smoke_coming_out_of_it.png differ diff --git a/wallpapers/a_painting_of_a_mountain.png b/wallpapers/a_painting_of_a_mountain.png new file mode 100644 index 0000000..662c4c3 Binary files /dev/null and b/wallpapers/a_painting_of_a_mountain.png differ diff --git a/wallpapers/a_pattern_of_circles_and_lines.png b/wallpapers/a_pattern_of_circles_and_lines.png new file mode 100644 index 0000000..13a12ca Binary files /dev/null and b/wallpapers/a_pattern_of_circles_and_lines.png differ diff --git a/wallpapers/a_person_in_water_with_planets_in_the_background.jpg b/wallpapers/a_person_in_water_with_planets_in_the_background.jpg new file mode 100644 index 0000000..7b2549a Binary files /dev/null and b/wallpapers/a_person_in_water_with_planets_in_the_background.jpg differ diff --git a/wallpapers/a_person_riding_a_bicycle_in_the_air.png b/wallpapers/a_person_riding_a_bicycle_in_the_air.png new file mode 100644 index 0000000..f110b8c Binary files /dev/null and b/wallpapers/a_person_riding_a_bicycle_in_the_air.png differ diff --git a/wallpapers/a_person_standing_in_front_of_a_building.jpg b/wallpapers/a_person_standing_in_front_of_a_building.jpg new file mode 100644 index 0000000..a895dcd Binary files /dev/null and b/wallpapers/a_person_standing_in_front_of_a_building.jpg differ diff --git a/wallpapers/a_person_standing_on_a_cliff.jpg b/wallpapers/a_person_standing_on_a_cliff.jpg new file mode 100644 index 0000000..e5400e8 Binary files /dev/null and b/wallpapers/a_person_standing_on_a_cliff.jpg differ diff --git a/wallpapers/a_person_standing_on_a_rocky_cliff_by_the_ocean.png b/wallpapers/a_person_standing_on_a_rocky_cliff_by_the_ocean.png new file mode 100644 index 0000000..9783eb5 Binary files /dev/null and b/wallpapers/a_person_standing_on_a_rocky_cliff_by_the_ocean.png differ diff --git a/wallpapers/a_person_standing_on_a_rocky_cliff_edge.png b/wallpapers/a_person_standing_on_a_rocky_cliff_edge.png new file mode 100644 index 0000000..251d772 Binary files /dev/null and b/wallpapers/a_person_standing_on_a_rocky_cliff_edge.png differ diff --git a/wallpapers/a_person_with_arms_raised_and_a_circle_of_lights.png b/wallpapers/a_person_with_arms_raised_and_a_circle_of_lights.png new file mode 100644 index 0000000..20368c8 Binary files /dev/null and b/wallpapers/a_person_with_arms_raised_and_a_circle_of_lights.png differ diff --git a/wallpapers/a_pile_of_rocks.jpg b/wallpapers/a_pile_of_rocks.jpg new file mode 100644 index 0000000..2e47499 Binary files /dev/null and b/wallpapers/a_pile_of_rocks.jpg differ diff --git a/wallpapers/a_pixel_art_of_a_city_street.png b/wallpapers/a_pixel_art_of_a_city_street.png new file mode 100644 index 0000000..7e97dca Binary files /dev/null and b/wallpapers/a_pixel_art_of_a_city_street.png differ diff --git a/wallpapers/a_pixel_art_of_a_sword_and_whale.png b/wallpapers/a_pixel_art_of_a_sword_and_whale.png new file mode 100644 index 0000000..a38d953 Binary files /dev/null and b/wallpapers/a_pixel_art_of_a_sword_and_whale.png differ diff --git a/wallpapers/a_planet_in_space_with_stars.png b/wallpapers/a_planet_in_space_with_stars.png new file mode 100644 index 0000000..085430d Binary files /dev/null and b/wallpapers/a_planet_in_space_with_stars.png differ diff --git a/wallpapers/a_planet_in_the_sky.jpg b/wallpapers/a_planet_in_the_sky.jpg new file mode 100644 index 0000000..0b9acf7 Binary files /dev/null and b/wallpapers/a_planet_in_the_sky.jpg differ diff --git a/wallpapers/a_poster_with_text_and_diagrams.jpg b/wallpapers/a_poster_with_text_and_diagrams.jpg new file mode 100644 index 0000000..736eb50 Binary files /dev/null and b/wallpapers/a_poster_with_text_and_diagrams.jpg differ diff --git a/wallpapers/a_purple_and_orange_mountain_range.png b/wallpapers/a_purple_and_orange_mountain_range.png new file mode 100644 index 0000000..1e80127 Binary files /dev/null and b/wallpapers/a_purple_and_orange_mountain_range.png differ diff --git a/wallpapers/a_purple_pyramid_in_the_desert.jpg b/wallpapers/a_purple_pyramid_in_the_desert.jpg new file mode 100644 index 0000000..5a7a9d4 Binary files /dev/null and b/wallpapers/a_purple_pyramid_in_the_desert.jpg differ diff --git a/wallpapers/a_red_and_black_round_object_with_a_black_background.jpg b/wallpapers/a_red_and_black_round_object_with_a_black_background.jpg new file mode 100644 index 0000000..998f978 Binary files /dev/null and b/wallpapers/a_red_and_black_round_object_with_a_black_background.jpg differ diff --git a/wallpapers/a_red_sun_over_mountains.jpg b/wallpapers/a_red_sun_over_mountains.jpg new file mode 100644 index 0000000..dde7904 Binary files /dev/null and b/wallpapers/a_red_sun_over_mountains.jpg differ diff --git a/wallpapers/a_river_between_rocks_with_trees.jpg b/wallpapers/a_river_between_rocks_with_trees.jpg new file mode 100644 index 0000000..406549c Binary files /dev/null and b/wallpapers/a_river_between_rocks_with_trees.jpg differ diff --git a/wallpapers/a_river_running_through_a_forest.jpg b/wallpapers/a_river_running_through_a_forest.jpg new file mode 100644 index 0000000..59231ad Binary files /dev/null and b/wallpapers/a_river_running_through_a_forest.jpg differ diff --git a/wallpapers/a_river_running_through_a_valley.png b/wallpapers/a_river_running_through_a_valley.png new file mode 100644 index 0000000..38a2176 Binary files /dev/null and b/wallpapers/a_river_running_through_a_valley.png differ diff --git a/wallpapers/a_road_going_through_a_valley.jpg b/wallpapers/a_road_going_through_a_valley.jpg new file mode 100644 index 0000000..5a8a7f5 Binary files /dev/null and b/wallpapers/a_road_going_through_a_valley.jpg differ diff --git a/wallpapers/a_road_with_a_car_in_the_middle_of_the_road.png b/wallpapers/a_road_with_a_car_in_the_middle_of_the_road.png new file mode 100644 index 0000000..01509f8 Binary files /dev/null and b/wallpapers/a_road_with_a_car_in_the_middle_of_the_road.png differ diff --git a/wallpapers/a_road_with_lights_on_the_side_of_a_body_of_water.jpg b/wallpapers/a_road_with_lights_on_the_side_of_a_body_of_water.jpg new file mode 100644 index 0000000..258e6e3 Binary files /dev/null and b/wallpapers/a_road_with_lights_on_the_side_of_a_body_of_water.jpg differ diff --git a/wallpapers/a_road_with_trees_in_the_background.jpg b/wallpapers/a_road_with_trees_in_the_background.jpg new file mode 100644 index 0000000..e2a37ed Binary files /dev/null and b/wallpapers/a_road_with_trees_in_the_background.jpg differ diff --git a/wallpapers/a_rocky_beach_with_water_in_the_background.jpg b/wallpapers/a_rocky_beach_with_water_in_the_background.jpg new file mode 100644 index 0000000..178f839 Binary files /dev/null and b/wallpapers/a_rocky_beach_with_water_in_the_background.jpg differ diff --git a/wallpapers/a_room_with_a_large_window_and_a_piano_keyboard_and_a_large_fire.jpg b/wallpapers/a_room_with_a_large_window_and_a_piano_keyboard_and_a_large_fire.jpg new file mode 100644 index 0000000..d0d18f4 Binary files /dev/null and b/wallpapers/a_room_with_a_large_window_and_a_piano_keyboard_and_a_large_fire.jpg differ diff --git a/wallpapers/a_sand_dunes_in_the_desert.jpg b/wallpapers/a_sand_dunes_in_the_desert.jpg new file mode 100644 index 0000000..685ce5a Binary files /dev/null and b/wallpapers/a_sand_dunes_in_the_desert.jpg differ diff --git a/wallpapers/a_screen_shot_of_a_computer.jpg b/wallpapers/a_screen_shot_of_a_computer.jpg new file mode 100644 index 0000000..f872f80 Binary files /dev/null and b/wallpapers/a_screen_shot_of_a_computer.jpg differ diff --git a/wallpapers/a_screen_shot_of_a_computer_01.jpg b/wallpapers/a_screen_shot_of_a_computer_01.jpg new file mode 100644 index 0000000..f99a493 Binary files /dev/null and b/wallpapers/a_screen_shot_of_a_computer_01.jpg differ diff --git a/wallpapers/a_screen_shot_of_a_video_game.png b/wallpapers/a_screen_shot_of_a_video_game.png new file mode 100644 index 0000000..daecfb0 Binary files /dev/null and b/wallpapers/a_screen_shot_of_a_video_game.png differ diff --git a/wallpapers/a_screenshot_of_a_computer.jpg b/wallpapers/a_screenshot_of_a_computer.jpg new file mode 100644 index 0000000..2788249 Binary files /dev/null and b/wallpapers/a_screenshot_of_a_computer.jpg differ diff --git a/wallpapers/a_screenshot_of_a_computer.png b/wallpapers/a_screenshot_of_a_computer.png new file mode 100644 index 0000000..04b79f8 Binary files /dev/null and b/wallpapers/a_screenshot_of_a_computer.png differ diff --git a/wallpapers/a_screenshot_of_a_computer_01.jpg b/wallpapers/a_screenshot_of_a_computer_01.jpg new file mode 100644 index 0000000..2a7d68d Binary files /dev/null and b/wallpapers/a_screenshot_of_a_computer_01.jpg differ diff --git a/wallpapers/a_screenshot_of_a_computer_02.jpg b/wallpapers/a_screenshot_of_a_computer_02.jpg new file mode 100644 index 0000000..e271db7 Binary files /dev/null and b/wallpapers/a_screenshot_of_a_computer_02.jpg differ diff --git a/wallpapers/a_screenshot_of_a_video_game (copy 1).png b/wallpapers/a_screenshot_of_a_video_game (copy 1).png new file mode 100644 index 0000000..3dc6849 Binary files /dev/null and b/wallpapers/a_screenshot_of_a_video_game (copy 1).png differ diff --git a/wallpapers/a_screenshot_of_a_video_game.jpg b/wallpapers/a_screenshot_of_a_video_game.jpg new file mode 100644 index 0000000..0e5b3b7 Binary files /dev/null and b/wallpapers/a_screenshot_of_a_video_game.jpg differ diff --git a/wallpapers/a_screenshot_of_a_video_game.png b/wallpapers/a_screenshot_of_a_video_game.png new file mode 100644 index 0000000..adb7d40 Binary files /dev/null and b/wallpapers/a_screenshot_of_a_video_game.png differ diff --git a/wallpapers/a_screenshot_of_a_video_game_01.jpg b/wallpapers/a_screenshot_of_a_video_game_01.jpg new file mode 100644 index 0000000..efac5cc Binary files /dev/null and b/wallpapers/a_screenshot_of_a_video_game_01.jpg differ diff --git a/wallpapers/a_small_town_with_many_houses.png b/wallpapers/a_small_town_with_many_houses.png new file mode 100644 index 0000000..3570222 Binary files /dev/null and b/wallpapers/a_small_town_with_many_houses.png differ diff --git a/wallpapers/a_snowy_landscape_with_trees_and_a_light_on_it.jpg b/wallpapers/a_snowy_landscape_with_trees_and_a_light_on_it.jpg new file mode 100644 index 0000000..69ceeba Binary files /dev/null and b/wallpapers/a_snowy_landscape_with_trees_and_a_light_on_it.jpg differ diff --git a/wallpapers/a_snowy_mountain_tops.jpg b/wallpapers/a_snowy_mountain_tops.jpg new file mode 100644 index 0000000..9776f86 Binary files /dev/null and b/wallpapers/a_snowy_mountain_tops.jpg differ diff --git a/wallpapers/a_snowy_mountain_tops_with_clouds_in_the_background.png b/wallpapers/a_snowy_mountain_tops_with_clouds_in_the_background.png new file mode 100644 index 0000000..2cc04bd Binary files /dev/null and b/wallpapers/a_snowy_mountain_tops_with_clouds_in_the_background.png differ diff --git a/wallpapers/a_spiral_staircase_with_a_square_hole_in_the_middle.jpg b/wallpapers/a_spiral_staircase_with_a_square_hole_in_the_middle.jpg new file mode 100644 index 0000000..301dead Binary files /dev/null and b/wallpapers/a_spiral_staircase_with_a_square_hole_in_the_middle.jpg differ diff --git a/wallpapers/a_spiraling_number_and_math_symbols.png b/wallpapers/a_spiraling_number_and_math_symbols.png new file mode 100644 index 0000000..f4cae47 Binary files /dev/null and b/wallpapers/a_spiraling_number_and_math_symbols.png differ diff --git a/wallpapers/a_street_with_buildings_and_trees.png b/wallpapers/a_street_with_buildings_and_trees.png new file mode 100644 index 0000000..9e7a42f Binary files /dev/null and b/wallpapers/a_street_with_buildings_and_trees.png differ diff --git a/wallpapers/a_sunset_over_a_body_of_water_with_Marfa_lights_in_the_background.png b/wallpapers/a_sunset_over_a_body_of_water_with_Marfa_lights_in_the_background.png new file mode 100644 index 0000000..58bf7d7 Binary files /dev/null and b/wallpapers/a_sunset_over_a_body_of_water_with_Marfa_lights_in_the_background.png differ diff --git a/wallpapers/a_tall_mountain_with_clouds.jpg b/wallpapers/a_tall_mountain_with_clouds.jpg new file mode 100644 index 0000000..624c3f0 Binary files /dev/null and b/wallpapers/a_tall_mountain_with_clouds.jpg differ diff --git a/wallpapers/a_tower_in_the_forest.png b/wallpapers/a_tower_in_the_forest.png new file mode 100644 index 0000000..64f5ef2 Binary files /dev/null and b/wallpapers/a_tower_in_the_forest.png differ diff --git a/wallpapers/a_train_crossing_a_bridge_over_a_bridge_with_mountains_in_the_background.png b/wallpapers/a_train_crossing_a_bridge_over_a_bridge_with_mountains_in_the_background.png new file mode 100644 index 0000000..46f4c76 Binary files /dev/null and b/wallpapers/a_train_crossing_a_bridge_over_a_bridge_with_mountains_in_the_background.png differ diff --git a/wallpapers/a_train_tracks_in_a_foggy_day.jpg b/wallpapers/a_train_tracks_in_a_foggy_day.jpg new file mode 100644 index 0000000..92558cc Binary files /dev/null and b/wallpapers/a_train_tracks_in_a_foggy_day.jpg differ diff --git a/wallpapers/a_tree_and_a_rock.png b/wallpapers/a_tree_and_a_rock.png new file mode 100644 index 0000000..645e466 Binary files /dev/null and b/wallpapers/a_tree_and_a_rock.png differ diff --git a/wallpapers/a_triangle_shaped_object_with_a_blue_and_white_light.png b/wallpapers/a_triangle_shaped_object_with_a_blue_and_white_light.png new file mode 100644 index 0000000..83eac22 Binary files /dev/null and b/wallpapers/a_triangle_shaped_object_with_a_blue_and_white_light.png differ diff --git a/wallpapers/a_video_game_graphics_of_a_forest_and_a_lake.png b/wallpapers/a_video_game_graphics_of_a_forest_and_a_lake.png new file mode 100644 index 0000000..de44c4e Binary files /dev/null and b/wallpapers/a_video_game_graphics_of_a_forest_and_a_lake.png differ diff --git a/wallpapers/a_video_game_of_a_video_camera.jpg b/wallpapers/a_video_game_of_a_video_camera.jpg new file mode 100644 index 0000000..bf02a98 Binary files /dev/null and b/wallpapers/a_video_game_of_a_video_camera.jpg differ diff --git a/wallpapers/a_video_game_screen_capture.jpg b/wallpapers/a_video_game_screen_capture.jpg new file mode 100644 index 0000000..566dba2 Binary files /dev/null and b/wallpapers/a_video_game_screen_capture.jpg differ diff --git a/wallpapers/a_video_game_screen_with_a_diamond_and_green_lights.png b/wallpapers/a_video_game_screen_with_a_diamond_and_green_lights.png new file mode 100644 index 0000000..51140c5 Binary files /dev/null and b/wallpapers/a_video_game_screen_with_a_diamond_and_green_lights.png differ diff --git a/wallpapers/a_video_game_screen_with_trees_and_bushes.jpg b/wallpapers/a_video_game_screen_with_trees_and_bushes.jpg new file mode 100644 index 0000000..c57bb30 Binary files /dev/null and b/wallpapers/a_video_game_screen_with_trees_and_bushes.jpg differ diff --git a/wallpapers/a_view_of_a_city_from_a_window.jpg b/wallpapers/a_view_of_a_city_from_a_window.jpg new file mode 100644 index 0000000..0057527 Binary files /dev/null and b/wallpapers/a_view_of_a_city_from_a_window.jpg differ diff --git a/wallpapers/a_view_of_earth_from_a_space_station.png b/wallpapers/a_view_of_earth_from_a_space_station.png new file mode 100644 index 0000000..cc2b74c Binary files /dev/null and b/wallpapers/a_view_of_earth_from_a_space_station.png differ diff --git a/wallpapers/a_waterfall_with_trees_and_leaves.jpg b/wallpapers/a_waterfall_with_trees_and_leaves.jpg new file mode 100644 index 0000000..e4c3d19 Binary files /dev/null and b/wallpapers/a_waterfall_with_trees_and_leaves.jpg differ diff --git a/wallpapers/a_white_and_black_rectangle_with_x_marks.jpg b/wallpapers/a_white_and_black_rectangle_with_x_marks.jpg new file mode 100644 index 0000000..270f56d Binary files /dev/null and b/wallpapers/a_white_and_black_rectangle_with_x_marks.jpg differ diff --git a/wallpapers/a_white_helmet_with_a_gun_and_fruit_on_a_table.png b/wallpapers/a_white_helmet_with_a_gun_and_fruit_on_a_table.png new file mode 100644 index 0000000..084ef03 Binary files /dev/null and b/wallpapers/a_white_helmet_with_a_gun_and_fruit_on_a_table.png differ diff --git a/wallpapers/a_white_line_drawing_of_a_group_of_trees.jpg b/wallpapers/a_white_line_drawing_of_a_group_of_trees.jpg new file mode 100644 index 0000000..f0b591d Binary files /dev/null and b/wallpapers/a_white_line_drawing_of_a_group_of_trees.jpg differ diff --git a/wallpapers/a_white_lines_on_a_black_background.jpeg b/wallpapers/a_white_lines_on_a_black_background.jpeg new file mode 100644 index 0000000..e7baff8 Binary files /dev/null and b/wallpapers/a_white_lines_on_a_black_background.jpeg differ diff --git a/wallpapers/a_white_swirly_circle_on_a_black_background.png b/wallpapers/a_white_swirly_circle_on_a_black_background.png new file mode 100644 index 0000000..a380b98 Binary files /dev/null and b/wallpapers/a_white_swirly_circle_on_a_black_background.png differ diff --git a/wallpapers/a_windmill_in_the_sky.png b/wallpapers/a_windmill_in_the_sky.png new file mode 100644 index 0000000..df852ce Binary files /dev/null and b/wallpapers/a_windmill_in_the_sky.png differ diff --git a/wallpapers/a_yellow_and_blue_sphere.png b/wallpapers/a_yellow_and_blue_sphere.png new file mode 100644 index 0000000..3a06f9e Binary files /dev/null and b/wallpapers/a_yellow_and_blue_sphere.png differ diff --git a/wallpapers/a_yellow_moon_in_the_sky.png b/wallpapers/a_yellow_moon_in_the_sky.png new file mode 100644 index 0000000..2869320 Binary files /dev/null and b/wallpapers/a_yellow_moon_in_the_sky.png differ diff --git a/wallpapers/aerial_view_of_a_city_at_night.jpg b/wallpapers/aerial_view_of_a_city_at_night.jpg new file mode 100644 index 0000000..b3a4472 Binary files /dev/null and b/wallpapers/aerial_view_of_a_city_at_night.jpg differ diff --git a/wallpapers/an_airplane_wing_seen_through_a_window.jpg b/wallpapers/an_airplane_wing_seen_through_a_window.jpg new file mode 100644 index 0000000..328f066 Binary files /dev/null and b/wallpapers/an_airplane_wing_seen_through_a_window.jpg differ diff --git a/wallpapers/an_astronaut_in_space_with_a_glowing_planet.png b/wallpapers/an_astronaut_in_space_with_a_glowing_planet.png new file mode 100644 index 0000000..cd87349 Binary files /dev/null and b/wallpapers/an_astronaut_in_space_with_a_glowing_planet.png differ diff --git a/wallpapers/an_astronaut_in_space_with_a_satellite.png b/wallpapers/an_astronaut_in_space_with_a_satellite.png new file mode 100644 index 0000000..18384c2 Binary files /dev/null and b/wallpapers/an_astronaut_in_space_with_a_satellite.png differ diff --git a/wallpapers/an_astronaut_playing_a_piano.png b/wallpapers/an_astronaut_playing_a_piano.png new file mode 100644 index 0000000..882545a Binary files /dev/null and b/wallpapers/an_astronaut_playing_a_piano.png differ diff --git a/wallpapers/cherry-blossoms.png b/wallpapers/cherry-blossoms.png new file mode 100644 index 0000000..bae8db7 Binary files /dev/null and b/wallpapers/cherry-blossoms.png differ diff --git a/wallpapers/looking_up_at_a_building.png b/wallpapers/looking_up_at_a_building.png new file mode 100644 index 0000000..8b8b250 Binary files /dev/null and b/wallpapers/looking_up_at_a_building.png differ diff --git a/wallpapers/nord3.png b/wallpapers/nord3.png new file mode 100644 index 0000000..a254f37 Binary files /dev/null and b/wallpapers/nord3.png differ diff --git a/wallpapers/nord4.png b/wallpapers/nord4.png new file mode 100644 index 0000000..4341f3a Binary files /dev/null and b/wallpapers/nord4.png differ diff --git a/wallpapers/rocks_in_the_water.jpg b/wallpapers/rocks_in_the_water.jpg new file mode 100644 index 0000000..9e87d5f Binary files /dev/null and b/wallpapers/rocks_in_the_water.jpg differ diff --git a/wallpapers/the_earth_in_space.jpeg b/wallpapers/the_earth_in_space.jpeg new file mode 100644 index 0000000..2687f6c Binary files /dev/null and b/wallpapers/the_earth_in_space.jpeg differ diff --git a/wallpapers/waves_crashing_waves_on_rocks.png b/wallpapers/waves_crashing_waves_on_rocks.png new file mode 100644 index 0000000..c7cf65f Binary files /dev/null and b/wallpapers/waves_crashing_waves_on_rocks.png differ