Initial Commit - Cat mode for windows.

This commit is contained in:
serversdwn
2026-02-23 21:31:18 +00:00
commit 3e625a9669
5 changed files with 419 additions and 0 deletions

11
scripts/build_exe.ps1 Normal file
View File

@@ -0,0 +1,11 @@
$ErrorActionPreference = "Stop"
python -m pip install -r requirements.txt
# Generate icon files in project root
python scripts/make_icon.py
# Build single-file exe
pyinstaller --noconsole --onefile --name CatMode --icon cat.ico main.py
Write-Host "Build complete. Find the exe in .\\dist\\CatMode.exe"