function dStart()
term.setBackgroundColor(1)
term.clear()
term.setTextColor(colors.lightBlue)
term.setCursorPos(1,1)
textutils.slowPrint("RockOS 2.0 Booting....")
term.setBackgroundColor(32)
term.setCursorPos(1,2)
textutils.slowPrint("                                                    ")
term.setBackgroundColor(1)
term.setCursorPos(5,9)
print("Searching Requiered OS Files...")
term.setBackgroundColor(colors.lightBlue)
term.setCursorPos(5,10)
textutils.slowPrint("                               ")
term.setBackgroundColor(1)
sleep(0.2)
term.setCursorPos(5,9)
print("Booting FI-Solus ROF...        ")
term.setBackgroundColor(colors.blue)
term.setCursorPos(5,10)
textutils.slowPrint("                               ")
term.setBackgroundColor(1)
sleep(0.5)
term.setCursorPos(5,9)
print("Booting RockOS 2.0....         ")
term.setBackgroundColor(512)
term.setCursorPos(5,10)
textutils.slowPrint("                               ")
sleep(2)
shell.run("gui")
end
dStart()