GEPM7HZAZ2B53M3LKHAZWWUUMLGX7F3NH4IZOI7UKV6UOZXZZXDQC
local settings = json.decode(love.filesystem.read('config'))
local width, height, flags = love.window.getMode()
flags.resizable = true
flags.minwidth = math.min(width, 200)
flags.minheight = math.min(height, 200)
App.screen.flags = flags
App.screen.width = settings.width
App.screen.height = settings.height
love.window.setMode(App.screen.width, App.screen.height, App.screen.flags)
love.window.setPosition(settings.x, settings.y, settings.displayindex)