1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-28 08:03:20 +00:00
opus/sys/autorun/welcome.lua

12 lines
246 B
Lua
Raw Normal View History

2019-01-20 03:05:05 +00:00
local Config = require('config')
local shell = _ENV.shell
local config = Config.load('os')
2019-03-27 19:21:31 +00:00
if not config.welcomed and shell.openForegroundTab then
2019-01-20 03:05:05 +00:00
config.welcomed = true
Config.update('os', config)
shell.openForegroundTab('Welcome')
end