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