A small Windows desktop app for picking three random Unfinity name sticker sheets and finding the word with the most vowels.
- Click Press to get stickers!
- Three random sticker sheets are drawn.
- Every sticker word from those sheets is listed with its vowel count.
- The word(s) with the highest vowel count win.
- Light & dark themes — toggle with the pill in the header
- Theme persistence — your choice is remembered between sessions
- Results panel — sticker names, vowel counts, and highlighted winners
- Info tooltip — after a roll, hover the ⓘ icon in the Results panel to see which sheets were drawn and which stickers came from each
- Portable
.exe— no Python install required
Grab StickerGoblin.exe from the latest release and run it.
Requirements: Windows 10 or later
- Python 3.10+
- Pillow
git clone https://github.com/KeywizZ/StickerPregame.git
cd StickerPregame
python -m venv .venv
.venv\Scripts\activate
pip install pillow
python main.pypip install pyinstaller pillow
pyinstaller StickerGoblin.specThe built app will be at dist/StickerGoblin.exe.
StickersPregame/
├── main.py # Application source
├── data.json # Sticker sheet data (words, vowel counts, image paths)
├── images/ # Sticker sheet images
├── assets/ # App icon and artwork
├── StickerGoblin.spec # PyInstaller build config
└── dist/ # Built executable (after build)
Theme preference is saved to:
%APPDATA%\StickerGoblin\config.json
