- 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>
11 lines
293 B
Lua
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
|