1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-30 17:13:20 +00:00
opus/sys/autorun/welcome.lua
kepler155c@gmail.com db832025c9 welcome screen
2019-01-19 22:05:05 -05:00

12 lines
218 B
Lua

local Config = require('config')
local shell = _ENV.shell
local config = Config.load('os')
if not config.welcomed then
config.welcomed = true
Config.update('os', config)
shell.openForegroundTab('Welcome')
end