1
0
mirror of https://github.com/kepler155c/opus synced 2025-11-02 08:33:02 +00:00

welcome screen

This commit is contained in:
kepler155c@gmail.com
2019-01-19 22:05:05 -05:00
parent 5a758f0292
commit db832025c9
6 changed files with 151 additions and 9 deletions

11
sys/autorun/welcome.lua Normal file
View File

@@ -0,0 +1,11 @@
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