--[[ 
   Linear Operating System
        Startup File
--]]

local oldPull = os.pullEvent;
os.pullEvent = os.pullEventRaw;

term.clear()
term.setCursorPos(1,1)

version = "1.5.1"



sleep(0.5)

shell.run("linear/system/loados.ls")

os.pullEvent = oldPull;