1
0
mirror of https://github.com/kepler155c/opus synced 2024-11-15 13:14:49 +00:00
opus/sys/autorun/welcome.lua
2019-06-18 15:19:24 -04:00

12 lines
243 B
Lua

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