oma-roids/conf.lua
28allday f2ee0c40f8 Add install/uninstall scripts, icon, rename to OMA-RIODS
- install.sh: clones from Forgejo, installs Love2D, desktop entry, icon, walker refresh
- uninstall.sh: removes everything cleanly
- install.sh uninstall: built-in uninstall flag
- Drops oma-riods-uninstall command into ~/.local/bin for easy removal
- SVG icon (wireframe asteroids)
- Renamed game to OMA-RIODS

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-13 15:28:25 +01:00

11 lines
293 B
Lua

function love.conf(t)
t.window.title = "OMA-RIODS"
t.window.width = 1024
t.window.height = 768
t.window.resizable = true
t.window.vsync = 1
t.window.fullscreen = false
t.window.fullscreentype = "desktop"
t.window.minwidth = 512
t.window.minheight = 384
end