mirror of
https://github.com/kepler155c/opus
synced 2024-11-15 13:14:49 +00:00
12 lines
243 B
Lua
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
|