1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-24 06:03:26 +00:00
opus/sys/autorun/welcome.lua
2019-03-27 15:21:31 -04:00

12 lines
246 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