Advertisement
Guest User

.startup

a guest
Aug 23rd, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. slc = 0
  2. shell.run("clear")
  3. term.setBackgroundColor(1)
  4.  
  5. function drawDesktop()
  6.   apple = paintutils.loadImage(".background")
  7.   paintutils.drawImage(apple,1,1)
  8.   print("")
  9. end
  10.  
  11. function osLabel()
  12.   term.setCursorPos(1,1)
  13.   term.setTextColor(9)
  14.   term.setBackgroundColor(256)
  15.   print("AppleOS v2.6")
  16. end
  17.  
  18. --Call Functions
  19. osLabel()
  20. drawDesktop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement