Advertisement
Guest User

startup

a guest
Mar 18th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. shell.run("clear")
  2. term.setTextColor(colors.black)
  3.  
  4. local image = paintutils.loadImage("/OS/images/bootup.png")
  5. paintutils.drawImage(image, 5, 5)
  6. sleep(5)
  7. shell.run("clear")
  8.  
  9. if term.isColor() == true then
  10.     term.setBackgroundColor(colors.lightBlue)
  11. else
  12.     term.setBackgroundColor(colors.lightGray)
  13. end
  14.  
  15. print("Icon PureOS")
  16. term.setTextColor(colors.white)
  17. term.setBackgroundColor(colors.black)
  18. print("Brick OS Build 190318")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement