diff --git a/examples/basaltPreview.lua b/examples/basaltPreview.lua index c47b0d9..b0dd61a 100644 --- a/examples/basaltPreview.lua +++ b/examples/basaltPreview.lua @@ -1,12 +1,13 @@ --Basalt configurated installer local filePath = "basalt.lua" --here you can change the file path default: basalt.lua if not(fs.exists(filePath))then -shell.run("wget https://raw.githubusercontent.com/NoryiE/Basalt/master/basalt.lua "..filePath) +shell.run("wget https://raw.githubusercontent.com/Pyroxenium/Basalt/master/basalt.lua "..filePath) end local basalt = dofile("basalt.lua") -- here you can change the variablename in any variablename you want default: basalt local w, h = term.getSize() + local main = basalt.createFrame("mainFrame"):show() local objFrame = main:addFrame("objectFrame"):setPosition(1,2):setBackground(colors.lightGray):setSize(w, h-1):show() local programFrame = main:addFrame("programFrame"):setPosition(1,2):setBackground(colors.lightGray):setSize(w, h-1)