Advertisement
chikcken

PowOS System startup (minecraft openComputers)

May 7th, 2018
1,223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. local fs = require("filesystem")
  2. local term = require("term")
  3. local comp = require("component")
  4. local pc = require("computer")
  5. local event = require("event")
  6. local text = require("text")
  7. local gpu = comp.gpu
  8.  
  9. gpu.setBackground(0x000000)
  10. gpu.setForeground(0xffffff)
  11. term.setCursor(1,1)
  12. gpu.setResolution(80,25)
  13. term.clear()
  14. print("Starting up PowOS...")
  15. os.sleep(0.5)
  16. os.execute("/PowOS/system/SignIn.lua")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement