From 3c821a48d40b1d1cf11e0c1f29c7a595699663bd Mon Sep 17 00:00:00 2001 From: Samkist Date: Sun, 29 May 2022 21:53:22 -0400 Subject: [PATCH] updated preview link --- examples/basaltPreview.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)