Skip to content

Instantly share code, notes, and snippets.

View djallits's full-sized avatar
🏠
Working from home

Dan Jallits djallits

🏠
Working from home
View GitHub Profile
@djallits
djallits / generate_wallpapers.py
Created April 12, 2026 00:26
Generate themed (catppuccin, ethereal, everforest, gruvbox, hackerman, kanagawa, matte-black, nord, osaka-jade, ristretto, rose-pine, tokyo-night) with variants (light/dark) 2560x1080 desktop wallpapers.
import os
import numpy as np
from PIL import Image, ImageEnhance, ImageFilter
# -----------------------------
# CONFIG
# -----------------------------
INPUT_IMAGE = "base.png"
OUTPUT_ROOT = "outputs"
SIZE = (2560, 1080)